Files
email-tracker/external/duckdb/test/sql/pragma/test_disabled_compression.test
2025-10-24 19:21:19 -05:00

24 lines
530 B
SQL

# name: test/sql/pragma/test_disabled_compression.test
# description: Test PRAGMA force_compression
# group: [pragma]
foreach compression rle dictionary bitpacking fsst
statement ok
PRAGMA disabled_compression_methods='${compression}'
endloop
statement error
PRAGMA disabled_compression_methods='uncompressed,rle'
----
Uncompressed compression cannot be disabled
statement ok
PRAGMA disabled_compression_methods='dictionary,rle'
statement error
PRAGMA disabled_compression_methods='xzx'
----
Unrecognized compression method