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

View File

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