Update questdb_sum_double.xml

This commit is contained in:
alexey-milovidov 2020-06-25 23:43:03 +03:00 committed by GitHub
parent bfc8ddbd5c
commit 23a3a86426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
<substitutions>
<substitution>
<name>format</name>
<name>engine</name>
<values>
<value>Memory</value>
<value>MergeTree ORDER BY tuple()</value>
@ -27,7 +27,7 @@
</substitution>
</substitutions>
<create_query>CREATE TABLE zz (x Float64) ENGINE {engine}</create_query>
<create_query>CREATE TABLE zz (x {type}) ENGINE {engine}</create_query>
<fill_query>INSERT INTO zz SELECT rand() FROM numbers(1000000000)</fill_query>
<query>SELECT sum(x) FROM zz</query>