File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ private String address() {
5151 // Calling start() will start the container (if not already started)
5252 // It is required to call start() before obtaining the JDBC URL because it will contain a randomized port
5353 cockroachDb .start ();
54- enableTemporaryTables ();
5554 return disableSslMode ( cockroachDb .getJdbcUrl () );
5655 }
5756
@@ -62,13 +61,6 @@ private static String disableSslMode(String url) {
6261 return url + "?sslmode=disable" ;
6362 }
6463
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-
7264 private static void runSql (String command ) {
7365 Container .ExecResult execResult ;
7466 try {
You can’t perform that action at this time.
0 commit comments