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,20 @@
# name: benchmark/micro/compression/bitpacking_hugeint/bitpacking_hugeint_read_constant.benchmark
# description: Scanning hugeints compressed mostly with the CONSTANT bitpacking mode
# group: [bitpacking_hugeint]
name Bitpacking Scan Constant Mode Hugeint
group bitpacking
storage persistent
load
DROP TABLE IF EXISTS integers;
PRAGMA force_compression='bitpacking';
PRAGMA force_bitpacking_mode='constant';
CREATE TABLE integers AS SELECT (i/119000)::HUGEINT as i FROM range(0, 250000000) tbl(i);
checkpoint;
run
select avg(i) from integers;
result I
1049.9202

View File

@@ -0,0 +1,17 @@
# name: benchmark/micro/compression/bitpacking_hugeint/bitpacking_hugeint_store_constant.benchmark
# description: Storing hugeints compressed mostly with the CONSTANT bitpacking mode
# group: [bitpacking_hugeint]
name Bitpacking Insert Constant Mode Hugeint
group bitpacking
storage persistent
require_reinit
load
PRAGMA force_compression='bitpacking';
PRAGMA force_bitpacking_mode='constant';
DROP TABLE IF EXISTS integers;
run
CREATE TABLE integers AS SELECT (i/119000)::HUGEINT as i FROM range(0, 250000000) tbl(i);
checkpoint;