Files
email-tracker/external/duckdb/test/configs/compressed_in_memory.json
2025-10-24 19:21:19 -05:00

23 lines
868 B
JSON

{
"description": "Enable compression on an in-memory database",
"on_init": "ATTACH ':memory:' AS t; USE t; DETACH memory; ATTACH ':memory:' AS memory (COMPRESS); USE memory; DETACH t;",
"on_new_connection": "USE memory;",
"on_load": "skip",
"skip_compiled": "true",
"skip_tests": [
{
"reason": "Unknown, to be investigated",
"paths": [
"test/fuzzer/sqlsmith/current_schemas_null.test",
"test/sql/settings/drop_set_schema.test",
"test/sql/catalog/test_set_search_path.test",
"test/sql/storage/temp_directory/max_swap_space_explicit.test",
"test/sql/storage/temp_directory/max_swap_space_inmemory.test",
"test/sql/storage/temp_directory/max_swap_space_error.test",
"test/sql/storage/buffer_manager_temp_dir.test",
"test/sql/pg_catalog/system_functions.test"
]
}
]
}