should be it
This commit is contained in:
20
external/duckdb/benchmark/micro/pushdown/nlj_inequality_pushdown.benchmark
vendored
Normal file
20
external/duckdb/benchmark/micro/pushdown/nlj_inequality_pushdown.benchmark
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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);
|
||||
Reference in New Issue
Block a user