mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
24 lines
715 B
SQL
24 lines
715 B
SQL
-- Tags: distributed, no-replicated-database, no-parallel, no-fasttest
|
|
|
|
set insert_distributed_sync = 1;
|
|
SET allow_experimental_live_view = 1;
|
|
|
|
DROP TABLE IF EXISTS lv;
|
|
DROP TABLE IF EXISTS visits;
|
|
DROP TABLE IF EXISTS visits_layer;
|
|
|
|
CREATE TABLE visits(StartDate Date) ENGINE MergeTree ORDER BY(StartDate);
|
|
CREATE TABLE visits_layer(StartDate Date) ENGINE Distributed(test_cluster_two_shards_localhost, currentDatabase(), 'visits', rand());
|
|
|
|
CREATE LIVE VIEW lv AS SELECT * FROM visits_layer ORDER BY StartDate;
|
|
|
|
INSERT INTO visits_layer (StartDate) VALUES ('2020-01-01');
|
|
INSERT INTO visits_layer (StartDate) VALUES ('2020-01-02');
|
|
|
|
SELECT * FROM lv;
|
|
|
|
DROP TABLE visits;
|
|
DROP TABLE visits_layer;
|
|
|
|
DROP TABLE lv;
|