mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
Add test
This commit is contained in:
parent
38bd543a42
commit
3bc731541c
10
tests/performance/avg_serialization.xml
Normal file
10
tests/performance/avg_serialization.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<test>
|
||||
<create_query>DROP TABLE IF EXISTS test_avg_insert</create_query>
|
||||
<create_query>
|
||||
CREATE TABLE test_avg_insert (key UInt64, value AggregateFunction(avg, UInt8)) ENGINE = Memory()
|
||||
</create_query>
|
||||
|
||||
<query>INSERT INTO test_avg_insert with initializeAggregation('avgState', 1) as s select number, s AS value FROM numbers(200000000)</query>
|
||||
|
||||
<drop_query>DROP TABLE IF EXISTS test_avg_insert</drop_query>
|
||||
</test>
|
Loading…
Reference in New Issue
Block a user