17 lines
365 B
Plaintext
17 lines
365 B
Plaintext
# name: benchmark/micro/pushdown/rowid_pushdown_dynamic.benchmark
|
|
# description: Show the performance of rowid pushdown
|
|
# group: [pushdown]
|
|
|
|
name RowIdPushdownDynamic
|
|
group micro
|
|
subgroup pushdown
|
|
|
|
require tpch
|
|
|
|
cache tpch_sf10.duckdb
|
|
|
|
load
|
|
CALL dbgen(sf=10);
|
|
|
|
run
|
|
SELECT * FROM lineitem WHERE rowid IN (SELECT rowid FROM lineitem ORDER BY l_orderkey DESC LIMIT 5); |