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 9
9
import org .hibernate .dialect .Dialect ;
10
10
import org .hibernate .dialect .MariaDB103Dialect ;
11
11
import org .hibernate .dialect .MySQL8Dialect ;
12
+ import org .hibernate .dialect .Oracle8iDialect ;
12
13
import org .hibernate .dialect .PostgreSQL10Dialect ;
13
14
import org .hibernate .dialect .SQLServerDialect ;
14
15
import org .hibernate .hql .spi .id .IdTableSupportStandardImpl ;
@@ -40,7 +41,7 @@ public String getCreateIdTableCommand() {
40
41
else if (dialect instanceof MySQL8Dialect || dialect instanceof MariaDB103Dialect ) {
41
42
return "create temporary table if not exists" ;
42
43
}
43
- else if (dialect instanceof DB297Dialect ) {
44
+ else if (dialect instanceof DB297Dialect || dialect instanceof Oracle8iDialect ) {
44
45
return "create global temporary table" ;
45
46
}
46
47
else if (dialect instanceof SQLServerDialect ) {
You can’t perform that action at this time.
0 commit comments