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,18 @@
# name: benchmark/micro/limit/parquet_parallel_limit.benchmark
# description: Benchmark of parallel limit computation
# group: [limit]
name Parallel Limit (Parquet)
group micro
subgroup limit
require parquet
load
CREATE TABLE tmp_integers AS SELECT * FROM range(100000000) tbl(i);
CREATE TABLE other_table AS SELECT 337 i UNION ALL SELECT 948247 UNION ALL SELECT 17797934 UNION ALL SELECT 99999998 UNION ALL SELECT 99999999;
COPY tmp_integers TO '${BENCHMARK_DIR}/integers.parquet';
CREATE VIEW integers AS SELECT * FROM '${BENCHMARK_DIR}/integers.parquet';
run
SELECT * FROM integers WHERE i IN (SELECT * FROM other_table) LIMIT 4