Skip to content

Commit

Permalink
allow final comma in sum product expression
Browse files Browse the repository at this point in the history
  • Loading branch information
Peva Blanchard committed Jan 29, 2024
1 parent 93b6755 commit 6297d07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ sliceExpression ::= dataRef '.' columnRef { pin=2 extends=dataExpression }
recordExpression ::= (opDefaultRecord | opLookup) dataSourceExpression { extends=dataExpression }
opDefaultRecord ::= 'default_record' 'from' { pin=1 }
opLookup ::= 'lookup'
colExpression ::= 'sum' '(' dataSourceExpression ',' columnRef ('*' columnRef)* ')' { pin=1 extends=dataExpression }
colExpression ::= 'sum' '(' dataSourceExpression ',' columnRef ('*' columnRef)* ','? ')' { pin=1 extends=dataExpression }

/*
Data source expression
Expand Down

0 comments on commit 6297d07

Please sign in to comment.