File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed
hibernate-community-dialects/src/main/java/org/hibernate/community/dialect
hibernate-core/src/main/java/org/hibernate/sql/ast/spi Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,6 @@ protected void renderMaterializationHint(CteMaterialization materialization) {
5454 }
5555 }
5656
57- @ Override
58- protected boolean supportsQuantifiedPredicates () {
59- return false ;
60- }
61-
6257 protected boolean shouldEmulateFetchClause (QueryPart queryPart ) {
6358 // Check if current query part is already row numbering to avoid infinite recursion
6459 // We also have to emulate this if a fetch clause type other than rows only is used
Original file line number Diff line number Diff line change @@ -8445,18 +8445,6 @@ private boolean needsTupleComparisonEmulation(ComparisonOperator operator) {
84458445 };
84468446 }
84478447
8448- /**
8449- * Is this dialect known to support quantified predicates.
8450- * <p>
8451- * Basically, does it support syntax like
8452- * {@code ... where FIRST_NAME > ALL (select ...) ...}
8453- *
8454- * @return True if this SQL dialect is known to support quantified predicates; false otherwise.
8455- */
8456- protected boolean supportsQuantifiedPredicates () {
8457- return true ;
8458- }
8459-
84608448 /**
84618449 * Is this dialect known to support what ANSI-SQL terms "row value
84628450 * constructor" syntax; sometimes called tuple syntax.
You can’t perform that action at this time.
0 commit comments