mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
9 lines
307 B
XML
9 lines
307 B
XML
|
<test>
|
||
|
<create_query>CREATE TABLE test_memory (x UInt64) ENGINE Memory</create_query>
|
||
|
<fill_query>INSERT INTO test_memory SELECT 1 FROM numbers(1000000000)</fill_query>
|
||
|
|
||
|
<query>SELECT sum(x * x + x) FROM test_memory</query>
|
||
|
|
||
|
<drop_query>DROP TABLE IF EXISTS test_memory</drop_query>
|
||
|
</test>
|