Commit ae29c41 1 parent 60aafd1 commit ae29c41 Copy full SHA for ae29c41
File tree 1 file changed +0
-7
lines changed
spark/v3.5/spark/src/test/java/org/apache/iceberg/spark
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -93,17 +93,10 @@ private static void startRESTServer() {
93
93
// prevent using already-in-use port when testing
94
94
System .setProperty ("rest.port" , String .valueOf (MetaStoreUtils .findFreePort ()));
95
95
System .setProperty (CatalogProperties .WAREHOUSE_LOCATION , warehouse .getAbsolutePath ());
96
- // In-memory sqlite database by default is private to the connection that created it.
97
- // If more than 1 jdbc connection backed by in-memory sqlite is created behind one
98
- // JdbcCatalog, then different jdbc connections could provide different views of table
99
- // status even belonging to the same catalog. Reference:
100
- // https://www.sqlite.org/inmemorydb.html
101
- System .setProperty (CatalogProperties .CLIENT_POOL_SIZE , "1" );
102
96
restServer .start (false );
103
97
restCatalog = RCKUtils .initCatalogClient ();
104
98
System .clearProperty ("rest.port" );
105
99
System .clearProperty (CatalogProperties .WAREHOUSE_LOCATION );
106
- System .clearProperty (CatalogProperties .CLIENT_POOL_SIZE );
107
100
} catch (Exception e ) {
108
101
throw new RuntimeException (e );
109
102
}
You can’t perform that action at this time.
0 commit comments