mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
10 lines
463 B
SQL
10 lines
463 B
SQL
DROP TABLE IF EXISTS tab_00481;
|
|
set allow_deprecated_syntax_for_merge_tree=1;
|
|
CREATE TABLE tab_00481 (date Date, value UInt64, s String, m FixedString(16)) ENGINE = MergeTree(date, (date, value), 8);
|
|
INSERT INTO tab_00481 SELECT today() as date, number as value, '' as s, toFixedString('', 16) as m from system.numbers limit 42;
|
|
SET preferred_max_column_in_block_size_bytes = 32;
|
|
SELECT blockSize(), * from tab_00481 format Null;
|
|
SELECT 0;
|
|
|
|
DROP TABLE tab_00481;
|