We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be9465c commit 91b17b8Copy full SHA for 91b17b8
hibernate-core/src/main/java/org/hibernate/query/sqm/tree/domain/SqmCorrelatedEntityJoin.java
@@ -68,6 +68,11 @@ public SqmCorrelatedEntityJoin<T> copy(SqmCopyContext context) {
68
return path;
69
}
70
71
+ @Override
72
+ public SqmRoot<?> findRoot() {
73
+ return getCorrelatedRoot();
74
+ }
75
+
76
@Override
77
public <X> X accept(SemanticQueryWalker<X> walker) {
78
return walker.visitCorrelatedEntityJoin(this);
0 commit comments