mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Fix tests
This commit is contained in:
parent
3151b5fd0f
commit
e9e6070899
@ -1,7 +1,7 @@
|
||||
DROP TABLE IF EXISTS test.hits_dst;
|
||||
DROP TABLE IF EXISTS test.hits_buffer;
|
||||
|
||||
CREATE TABLE test.hits_dst AS test.hits SETTINGS storage_policy = 'default';
|
||||
CREATE TABLE test.hits_dst AS test.hits ENGINE = MergeTree SETTINGS storage_policy = 'default';
|
||||
CREATE TABLE test.hits_buffer AS test.hits_dst ENGINE = Buffer(test, hits_dst, 8, 600, 600, 1000000, 1000000, 100000000, 1000000000);
|
||||
|
||||
INSERT INTO test.hits_buffer SELECT * FROM test.hits WHERE CounterID = 800784;
|
||||
|
@ -1,2 +1 @@
|
||||
20
|
||||
20
|
||||
|
@ -1,7 +1,7 @@
|
||||
-- Tags: no-tsan, no-parallel
|
||||
|
||||
DROP TABLE IF EXISTS test.hits_1m;
|
||||
CREATE TABLE test.hits_1m AS test.hits SETTINGS storage_policy = 'default';
|
||||
CREATE TABLE test.hits_1m AS test.hits ENGINE = MergeTree SETTINGS storage_policy = 'default';
|
||||
INSERT INTO test.hits_1m SELECT * FROM test.hits LIMIT 1000000;
|
||||
|
||||
CREATE DATABASE IF NOT EXISTS db_dict;
|
||||
|
Loading…
Reference in New Issue
Block a user