mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
add perf test
This commit is contained in:
parent
ab086f15d0
commit
b2acbe42b7
9
tests/performance/join_filter_pushdown.xml
Normal file
9
tests/performance/join_filter_pushdown.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<test>
|
||||
<create_query>create table t(a UInt64) engine=MergeTree order by tuple()</create_query>
|
||||
<fill_query>insert into t select * from numbers_mt(5e6)</fill_query>
|
||||
|
||||
<query>select * from t as t0 inner join t as t1 using(a) where t1.a = 100</query>
|
||||
|
||||
<drop_query>drop table t</drop_query>
|
||||
</test>
|
||||
|
Loading…
Reference in New Issue
Block a user