Update 01917_prewhere_column_type.sql

This commit is contained in:
alexey-milovidov 2021-06-27 19:31:55 +03:00 committed by GitHub
parent 46a5dd6701
commit ec834fe213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 ( s String, f Float32, e UInt16 ) ENGINE = MergeTree ORDER BY tuple();
CREATE TABLE t1 ( s String, f Float32, e UInt16 ) ENGINE = MergeTree ORDER BY tuple() SETTINGS min_bytes_for_wide_part = '100G';
INSERT INTO t1 VALUES ('111', 1, 1);