Skip to content

Commit a1dfbca

Browse files
committed
HHH-19260 - Remove supportsQuantifiedPredicates() from AbstractSqlAstTranslator (not used any more)
Signed-off-by: Jan Schatteman <[email protected]>
1 parent ebe9b64 commit a1dfbca

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

hibernate-community-dialects/src/main/java/org/hibernate/community/dialect/SQLiteSqlAstTranslator.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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

hibernate-core/src/main/java/org/hibernate/sql/ast/spi/AbstractSqlAstTranslator.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)