Merge pull request #9845 from ClickHouse/fix_delta_test_unbundled

Fix delta test in unbundled mode
This commit is contained in:
alexey-milovidov 2020-03-24 21:58:28 +03:00 committed by GitHub
commit 7aefaf5ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,12 +6,12 @@ DROP TABLE IF EXISTS default_codec_synthetic;
CREATE TABLE delta_codec_synthetic
(
id UInt64 Codec(Delta, ZSTD)
id UInt64 Codec(Delta, ZSTD(3))
) ENGINE MergeTree() ORDER BY tuple();
CREATE TABLE default_codec_synthetic
(
id UInt64 Codec(ZSTD)
id UInt64 Codec(ZSTD(3))
) ENGINE MergeTree() ORDER BY tuple();
INSERT INTO delta_codec_synthetic SELECT number FROM system.numbers LIMIT 5000000;