1
0
mirror of synced 2025-01-31 12:32:59 +03:00

DDC-3276 - #1122 - updating EBNF in documentation to reflect new syntax support

This commit is contained in:
Marco Pivetta 2014-08-27 02:17:08 +02:00
parent 45d74e7220
commit 48a86511cb

View File

@ -1626,8 +1626,7 @@ Aggregate Expressions
.. code-block:: php
AggregateExpression ::= ("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] StateFieldPathExpression ")" |
"COUNT" "(" ["DISTINCT"] (IdentificationVariable | SingleValuedPathExpression) ")"
AggregateExpression ::= ("AVG" | "MAX" | "MIN" | "SUM" | "COUNT") "(" ["DISTINCT"] SimpleArithmeticExpression ")"
Case Expressions
~~~~~~~~~~~~~~~~