fixed the test

This commit is contained in:
myrrc 2020-12-18 16:04:19 +03:00
parent 283268c50f
commit d4f8c46210

View File

@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS test01603 (
f64 Float64,
d Decimal64(3) DEFAULT toDecimal32(f64, 3),
f32 Float32 DEFAULT f64
) ENGINE=Memory() ORDER BY f32;
) ENGINE=MergeTree() ORDER BY f32;
INSERT INTO test01603(f64) SELECT 1 / (number + 1) FROM system.numbers LIMIT 1000;