HHH-17943 - Fix for issue

Signed-off-by: Jan Schatteman <jschatte@redhat.com>
This commit is contained in:
Jan Schatteman 2024-04-11 19:13:48 +02:00 committed by Christian Beikov
parent a3387a2d85
commit ab7f95abd7
1 changed files with 5 additions and 0 deletions

View File

@ -697,6 +697,11 @@ public class H2Dialect extends Dialect {
);
}
@Override
public String getTemporaryTableCreateOptions() {
return "TRANSACTIONAL";
}
@Override
public TemporaryTableKind getSupportedTemporaryTableKind() {
return TemporaryTableKind.LOCAL;