should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
# 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