1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# name: test/sql/storage/compression/bitpacking/bitpacking_mode.test
# description: Test bitpacking mode
# group: [bitpacking]
statement ok
SET force_compression = 'bitpacking'
query I
SELECT current_setting('force_bitpacking_mode')
----
AUTO
statement error
SET force_bitpacking_mode='xxx'
----
unrecognized value
foreach mode auto constant constant_delta delta_for for
statement ok
SET force_bitpacking_mode='${mode}'
query I
SELECT current_setting('force_bitpacking_mode')='${mode}'
----
true
endloop
|