Skip to content

Commit 65f5a61

Browse files
committed
Fix count distinct on path with hql reserved words
1 parent 224d6d4 commit 65f5a61

File tree

1 file changed

+1
-1
lines changed
  • src/NHibernate/Hql/Ast/ANTLR

1 file changed

+1
-1
lines changed

src/NHibernate/Hql/Ast/ANTLR/Hql.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ vectorExpr
600600
// NOTE: handleDotIdent() is called immediately after the first IDENT is recognized because
601601
// the method looks a head to find keywords after DOT and turns them into identifiers.
602602
identPrimary
603-
: identifier { HandleDotIdent(); }
603+
: identifier {{ HandleDotIdent(); }}
604604
( options {greedy=true;} : DOT^ ( identifier | o=OBJECT { $o.Type = IDENT; } ) )*
605605
( ( op=OPEN^ { $op.Type = METHOD_CALL;} exprList CLOSE! )
606606
)?

0 commit comments

Comments
 (0)