File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hibernate-reactive-core/src/main/java/org/hibernate/reactive/bulk/impl Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 99import org .hibernate .dialect .Dialect ;
1010import org .hibernate .dialect .MariaDB103Dialect ;
1111import org .hibernate .dialect .MySQL8Dialect ;
12+ import org .hibernate .dialect .Oracle8iDialect ;
1213import org .hibernate .dialect .PostgreSQL10Dialect ;
1314import org .hibernate .dialect .SQLServerDialect ;
1415import org .hibernate .hql .spi .id .IdTableSupportStandardImpl ;
@@ -40,7 +41,7 @@ public String getCreateIdTableCommand() {
4041 else if (dialect instanceof MySQL8Dialect || dialect instanceof MariaDB103Dialect ) {
4142 return "create temporary table if not exists" ;
4243 }
43- else if (dialect instanceof DB297Dialect ) {
44+ else if (dialect instanceof DB297Dialect || dialect instanceof Oracle8iDialect ) {
4445 return "create global temporary table" ;
4546 }
4647 else if (dialect instanceof SQLServerDialect ) {
You can’t perform that action at this time.
0 commit comments