21 lines
400 B
Plaintext
21 lines
400 B
Plaintext
# name: benchmark/micro/pushdown/nlj_inequality_pushdown.benchmark
|
|
# description: Show the performance of using pushdown with NestedLoopJoin
|
|
# group: [pushdown]
|
|
|
|
name NestedLoopJoinInequalityPushdown
|
|
group micro
|
|
subgroup pushdown
|
|
|
|
require tpch
|
|
|
|
argument sf 10
|
|
|
|
cache tpch_sf${sf}.duckdb
|
|
|
|
load
|
|
CALL dbgen(sf=${sf});
|
|
|
|
run
|
|
FROM lineitem
|
|
WHERE l_orderkey > (SELECT MAX(l_orderkey) - 100 FROM lineitem);
|