HHH-14985 H2Dialect does not work properly with h2 2.0.202 on inserts

This commit is contained in:
Filipe Roque 2021-12-27 02:02:52 +00:00 committed by Christian Beikov
parent 31a795b8c7
commit f64f311c4f
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ public class H2IdentityColumnSupport extends IdentityColumnSupportImpl {
@Override
public String getIdentityInsertString() {
return "null";
return "default";
}
}