mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
added test 00481_reading_from_last_granula
This commit is contained in:
parent
01a004050d
commit
63cdf84fe3
@ -0,0 +1 @@
|
|||||||
|
0
|
@ -0,0 +1,7 @@
|
|||||||
|
DROP TABLE IF EXISTS test.tab;
|
||||||
|
CREATE TABLE test.tab (date Date, value UInt64, s String, m FixedString(16)) ENGINE = MergeTree(date, (date, value), 8);
|
||||||
|
INSERT INTO test.tab 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 test.tab format Null;
|
||||||
|
SELECT 0;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user