mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
HHH-18339 Set support filter clause to True for H2
This commit is contained in:
parent
e2e1661845
commit
bb90a84505
@ -411,4 +411,9 @@ private boolean supportsOffsetFetchClausePercentWithTies() {
|
||||
protected boolean supportsJoinInMutationStatementSubquery() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsFilterClause() {
|
||||
return getDialect().getVersion().isSameOrAfter( 1, 4, 197 );
|
||||
}
|
||||
}
|
||||
|
@ -384,4 +384,10 @@ private boolean supportsOffsetFetchClausePercentWithTies() {
|
||||
protected boolean supportsJoinInMutationStatementSubquery() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsFilterClause() {
|
||||
// Introduction of FILTER clause https://github.com/h2database/h2database/commit/9e6dbf3baa57000f670826ede431dc7fb4cd9d9c
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user