From 6f714f16b3a77eee76f980a6e5709b3f7279f8c0 Mon Sep 17 00:00:00 2001 From: Gavin King Date: Sun, 2 Jan 2022 17:40:28 +0100 Subject: [PATCH] remove unnecessary parens --- .../src/main/antlr/org/hibernate/grammars/hql/HqlParser.g4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hibernate-core/src/main/antlr/org/hibernate/grammars/hql/HqlParser.g4 b/hibernate-core/src/main/antlr/org/hibernate/grammars/hql/HqlParser.g4 index 10a352e3e6..dc5c26f037 100644 --- a/hibernate-core/src/main/antlr/org/hibernate/grammars/hql/HqlParser.g4 +++ b/hibernate-core/src/main/antlr/org/hibernate/grammars/hql/HqlParser.g4 @@ -121,7 +121,7 @@ entityName ; identificationVariableDef - : (AS identifier) + : AS identifier | IDENTIFIER | QUOTED_IDENTIFIER ;