HHH-15756 Table Value Constructor (INSERT, FROM column aliasing at table alias, CTE)

This commit is contained in:
LLEFEVRE 2024-02-16 11:45:37 +01:00 committed by Christian Beikov
parent 45a3ed9565
commit 7c400e10bb
1 changed files with 9 additions and 0 deletions

View File

@ -963,6 +963,15 @@ public class OracleDialect extends Dialect {
return getVersion().isSameOrAfter( 23 ) ? SelectItemReferenceStrategy.ALIAS : SelectItemReferenceStrategy.EXPRESSION;
}
@Override
public boolean supportsValuesList() {
return getVersion().isSameOrAfter( 23 );
}
@Override
public boolean supportsValuesListForInsert() {
return getVersion().isSameOrAfter( 23 );
}
// features which remain constant across 8i, 9i, and 10g ~~~~~~~~~~~~~~~~~~
@Override