Fix bad test

This commit is contained in:
Alexey Milovidov 2021-05-06 01:09:08 +03:00
parent 6959057393
commit 3bf9a1f5c0

View File

@ -22,7 +22,7 @@ CREATE TABLE codecTest (
valueI8 Int8 CODEC(DoubleDelta),
valueDT DateTime CODEC(DoubleDelta),
valueD Date CODEC(DoubleDelta)
) Engine = MergeTree ORDER BY key;
) Engine = MergeTree ORDER BY key SETTINGS min_bytes_for_wide_part = 0;
-- checking for overflow
@ -154,7 +154,8 @@ SELECT
round(u/c,3) ratio
FROM system.columns
WHERE
table == 'codecTest'
table = 'codecTest'
AND database = currentDatabase()
AND
compression_codec != ''
AND