HHH-15754 IF [NOT] EXISTS DDL

This commit is contained in:
LLEFEVRE 2023-10-16 11:50:08 +02:00 committed by Christian Beikov
parent 9cad53908b
commit 79321e558f
1 changed files with 5 additions and 0 deletions

View File

@ -945,6 +945,11 @@ public class OracleDialect extends Dialect {
return getVersion().isSameOrAfter( 23 );
}
@Override
public boolean supportsIfExistsBeforeTypeName() {
return getVersion().isSameOrAfter( 23 );
}
@Override
public String getCascadeConstraintsString() {
return " cascade constraints";