fix private test

This commit is contained in:
Nikita Taranov 2024-05-30 17:34:07 +01:00
parent 2ee0f4f532
commit 4705d520ec

View File

@ -8,7 +8,7 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
${CLICKHOUSE_CLIENT} -nq "
DROP TABLE IF EXISTS t;
CREATE TABLE t(a UInt32, b UInt32, c UInt32, d UInt32) ENGINE=MergeTree ORDER BY a;
CREATE TABLE t(a UInt32, b UInt32, c UInt32, d UInt32) ENGINE=MergeTree ORDER BY a SETTINGS min_bytes_for_wide_part=1, min_rows_for_wide_part=1;
INSERT INTO t SELECT number, number, number, number FROM numbers_mt(1e7);