未验证 提交 7aefaf5f 编写于 作者: A alexey-milovidov 提交者: GitHub

Merge pull request #9845 from ClickHouse/fix_delta_test_unbundled

Fix delta test in unbundled mode
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册