mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Update tests/performance/low_cardinality_argument.xml
Co-authored-by: Igor Nikonov <954088+devcrafter@users.noreply.github.com>
This commit is contained in:
parent
7508448275
commit
3436fcfda6
@ -3,7 +3,7 @@
|
||||
CREATE TABLE test_lc (x UInt64, lc LowCardinality(Nullable(String))) ENGINE = MergeTree order by x
|
||||
</create_query>
|
||||
|
||||
<fill_query>INSERT INTO test_lc SELECT number, number % 10 ? NULL : toString(number % 10000) FROM numbers(10000000)</fill_query>
|
||||
<fill_query>INSERT INTO test_lc SELECT number, number % 10 ? NULL : toString(number % 10000) FROM numbers(1e7)</fill_query>
|
||||
|
||||
<query>SELECT isNullable(lc) FROM test_lc FORMAT Null</query>
|
||||
<query>SELECT isConstant(lc) FROM test_lc FORMAT Null</query>
|
||||
|
Loading…
Reference in New Issue
Block a user