Skip to content

Commit 1c44e91

Browse files
committed
[#2152] Remove experimental table support when starting CockroachDB
It's not needed anymore
1 parent f7304ad commit 1c44e91

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers/CockroachDBDatabase.java

-8
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)