We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f6069a commit d578b1dCopy full SHA for d578b1d
src/NHibernate/Hql/Ast/ANTLR/Hql.g
@@ -628,12 +628,11 @@ aggregateArgument
628
;
629
630
aggregateDistinctAll
631
- : ( distinctAll aggregateArgument ) => (distinctAll aggregateArgument)
632
- | aggregateArgument
+ : ( distinctAll? aggregateArgument )
633
634
635
distinctAll
636
- : ( DISTINCT | ALL )
+ : {input.LA(1) == DISTINCT || input.LA(1) == ALL}? ( DISTINCT | ALL )
637
638
639
//## collection: ( OPEN query CLOSE ) | ( 'elements'|'indices' OPEN path CLOSE );
0 commit comments