You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test that the input datasets ds_id must have the same Logical Data Structure, which is the same Components in number, name and type (static).
Test that keepPart must be a Component expression containing exactly the name of a Component of any ds (complex Component expressions, combining more than one Component are not allowed) (static).
Test that aggrPart must be a Component expression containing exactly the name of a MeasureComponent present in any ds (no complex Component expressions, combining more than one Component is allowed). If there is at least one aggrPart, there must be one for each MeasureComponent that is present in a keepPart. If keepPart is omitted, all MeasureComponents must be in the aggregate. This means that there cannot be MeasureComponents, kept that are not used in aggregations (static).
The text was updated successfully, but these errors were encountered:
…boolean to develop
* commit 'eeb6f1807784ead8c95c2430856695b8907123e0': (38 commits)
Update antlr4 maven plugin version
Remove unused code before merging pr
Reference and Component identity equality refactoring
Refactor the rename function and add more robust tests
Deprecate JoinBodyVisitor and use JoinExpressionVisitor instead
Make all the join clause visitors use the ReferenceVisitor to get Component references
Make all operations use references
Use reference in the grammar
Update antlr versioUpdate antlr versionn
Introduce bloc
Make the ReferenceVisitor use a Stack to handle sub scopes
Take advantage of JoinReferenceVisitor in KeepClause
Introduce a JoinReferenceVisitor to handle special component references in a join body
Add casting exceptions
Take advantage of ReferenceVisitor in DropClause
Take advantage of ReferenceVisitor in JoinDefinition
Adapt visitors to new reference grammar (unoptimized)
Add more tests for the ReferenceVisitor
Add tests for the ReferenceVisitor
Introduce reference visitor
...
Dataset ds_o := get(PersistentDataset ds_id {, PersistentDataset ds_id}\* {,keep(keepPart Component {, keepClause Component})} {,filter(Component filterPart)}
{,aggregate(
[sum|avg|median|count|count_distinct|min|max]({include NULLS} MeasureComponent aggrPart) {,[sum|avg|median|count|count_distinct|min|max]({include NULLS} MeasureComponent aggrPart)}
)} )
The text was updated successfully, but these errors were encountered: