File tree 1 file changed +0
-8
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ private String address() {
51
51
// Calling start() will start the container (if not already started)
52
52
// It is required to call start() before obtaining the JDBC URL because it will contain a randomized port
53
53
cockroachDb .start ();
54
- enableTemporaryTables ();
55
54
return disableSslMode ( cockroachDb .getJdbcUrl () );
56
55
}
57
56
@@ -62,13 +61,6 @@ private static String disableSslMode(String url) {
62
61
return url + "?sslmode=disable" ;
63
62
}
64
63
65
- /**
66
- * We need temporary tables when updating entities in a hierarchy
67
- */
68
- private static void enableTemporaryTables () {
69
- runSql ( "SET CLUSTER SETTING sql.defaults.experimental_temporary_tables.enabled = 'true';" );
70
- }
71
-
72
64
private static void runSql (String command ) {
73
65
Container .ExecResult execResult ;
74
66
try {
You can’t perform that action at this time.
0 commit comments