Skip to content

Commit

Permalink
HHH-15537 Implement lateral subquery emulation when nested correlatio…
Browse files Browse the repository at this point in the history
…n is unsupported
  • Loading branch information
beikov committed Sep 21, 2022
1 parent 4954483 commit 548fc26
Show file tree
Hide file tree
Showing 2 changed files with 318 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,16 @@ protected boolean supportsDistinctFromPredicate() {
return true;
}

@Override
protected boolean supportsSimpleQueryGrouping() {
return getDialect().getVersion().isSameOrAfter( 8 );
}

@Override
protected boolean supportsNestedSubqueryCorrelation() {
return false;
}

@Override
protected String getFromDual() {
return " from dual";
Expand Down

0 comments on commit 548fc26

Please sign in to comment.