Skip to content

Commit

Permalink
test: limit the DuckDB memory to 250MB
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Reichel <[email protected]>
  • Loading branch information
manticore-projects committed Oct 23, 2024
1 parent 89beb8b commit c288cbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ static synchronized void init()
info.put("old_implicit_casting", "true");
info.put("default_null_order", "NULLS FIRST");
info.put("default_order", "ASC");
info.put("memory_limit", "1GB");
info.put("memory_limit", "250M");
connDuck = DriverManager.getConnection("jdbc:duckdb:" + fileDuckDB.getAbsolutePath(), info);

if (!isInitialised) {
Expand Down

0 comments on commit c288cbe

Please sign in to comment.