mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added two more tests
This commit is contained in:
parent
afef5c6c70
commit
692ce0f6c5
@ -0,0 +1,17 @@
|
||||
DROP TABLE IF EXISTS test1;
|
||||
DROP TABLE IF EXISTS test2;
|
||||
DROP TABLE IF EXISTS mv1;
|
||||
DROP TABLE IF EXISTS mv2;
|
||||
|
||||
CREATE TABLE test1 (a UInt8) ENGINE MergeTree ORDER BY a;
|
||||
CREATE TABLE test2 (a UInt8) ENGINE MergeTree ORDER BY a;
|
||||
|
||||
CREATE MATERIALIZED VIEW mv1 TO test1 AS SELECT a FROM test2;
|
||||
CREATE MATERIALIZED VIEW mv2 TO test2 AS SELECT a FROM test1;
|
||||
|
||||
insert into test1 values (1); -- { serverError 306 }
|
||||
|
||||
DROP TABLE test1;
|
||||
DROP TABLE test2;
|
||||
DROP TABLE mv1;
|
||||
DROP TABLE mv2;
|
@ -0,0 +1,13 @@
|
||||
DROP TABLE IF EXISTS distr1;
|
||||
DROP TABLE IF EXISTS distr2;
|
||||
|
||||
CREATE TABLE distr (x UInt8) ENGINE = Distributed(test_shard_localhost, currentDatabase(), distr); -- { serverError 269 }
|
||||
|
||||
CREATE TABLE distr1 (x UInt8) ENGINE = Distributed(test_shard_localhost, currentDatabase(), distr2);
|
||||
CREATE TABLE distr2 (x UInt8) ENGINE = Distributed(test_shard_localhost, currentDatabase(), distr1);
|
||||
|
||||
SELECT * FROM distr1; -- { serverError 306 }
|
||||
SELECT * FROM distr2; -- { serverError 306 }
|
||||
|
||||
DROP TABLE distr1;
|
||||
DROP TABLE distr2;
|
Loading…
Reference in New Issue
Block a user