This commit is contained in:
Alexander Kuzmenkov 2020-07-10 17:18:39 +03:00
parent cd09cf8c0b
commit 70ba4e16f8
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
</settings> </settings>
<create_query>CREATE TABLE t (x UInt64, d32 Decimal32(3), d64 Decimal64(4), d128 Decimal128(5)) ENGINE = Memory</create_query> <create_query>CREATE TABLE t (x UInt64, d32 Decimal32(3), d64 Decimal64(4), d128 Decimal128(5)) ENGINE = Memory</create_query>
<fill_query>INSERT INTO t SELECT number AS x, x % 1000000 AS d32, x AS d64, x d128 FROM numbers_mt(1000000000)</fill_query> <fill_query>INSERT INTO t SELECT number AS x, x % 1000000 AS d32, x AS d64, x d128 FROM numbers_mt(500000000)</fill_query>
<drop_query>DROP TABLE IF EXISTS t</drop_query> <drop_query>DROP TABLE IF EXISTS t</drop_query>
<query>SELECT min(d32), max(d32), argMin(x, d32), argMax(x, d32) FROM t</query> <query>SELECT min(d32), max(d32), argMin(x, d32), argMax(x, d32) FROM t</query>

View File

@ -10,8 +10,8 @@
<substitution> <substitution>
<name>parts</name> <name>parts</name>
<values> <values>
<value>200</value> <value>100</value>
<value>2000</value> <value>1000</value>
</values> </values>
</substitution> </substitution>
</substitutions> </substitutions>