-
Notifications
You must be signed in to change notification settings - Fork 0
Milestone
Description
Latest grammar changes in group by/group except adds a new possibility that needs to be reviewed and implemented.
Old grammar:
groupingClause:
GROUP op=(BY | EXCEPT) componentID (COMMA componentID)* # groupByOrExcept
| GROUP ALL exprComponent # groupAll
;
New grammar:
groupingClause:
GROUP op=(BY | EXCEPT) componentID (COMMA componentID)* ( TIME_AGG LPAREN STRING_CONSTANT (COMMA delim=(FIRST|LAST))? RPAREN )? # groupByOrExcept
| GROUP ALL ( TIME_AGG LPAREN STRING_CONSTANT (COMMA delim=(FIRST|LAST))? RPAREN )? # groupAll
;
Originally posted by @javihern98 in #564 (comment)
Reactions are currently unavailable