mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-28 06:49:09 +00:00
Make parenthesized expressions work in HQL
Previously, parenthesized expression were broken.
This commit is contained in:
parent
95a291575e
commit
5b18a4048d
@ -1520,6 +1520,11 @@ public SqmUnaryOperation<?> visitUnaryExpression(HqlParser.UnaryExpressionContex
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object visitGroupedExpression(HqlParser.GroupedExpressionContext ctx) {
|
||||
return ctx.expression().accept(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SqmCaseSimple visitSimpleCaseList(HqlParser.SimpleCaseListContext ctx) {
|
||||
//noinspection unchecked
|
||||
|
Loading…
x
Reference in New Issue
Block a user