HHH-14682: Enable COMMENT ON H2

This commit is contained in:
Dariush Moshiri 2021-12-25 19:06:22 +01:00 committed by Steve Ebersole
parent f2f2a195cd
commit 0dc94d312e
1 changed files with 5 additions and 0 deletions

View File

@ -367,6 +367,11 @@ public class H2Dialect extends Dialect {
: super.getCascadeConstraintsString();
}
@Override
public boolean supportsCommentOn() {
return true;
}
@Override
public boolean dropConstraints() {
return false;