ClickHouse/dbms/tests/queries/0_stateless/00508_materialized_view_to.sql

34 lines
761 B
SQL

DROP TABLE IF EXISTS test.src;
DROP TABLE IF EXISTS test.dst;
DROP TABLE IF EXISTS test.mv_00508;
CREATE TABLE test.src (x UInt8) ENGINE = Null;
CREATE TABLE test.dst (x UInt8) ENGINE = Memory;
USE test;
CREATE MATERIALIZED VIEW test.mv_00508 TO dst AS SELECT * FROM src;
INSERT INTO src VALUES (1), (2);
SELECT * FROM test.mv_00508 ORDER BY x;
-- Detach MV and see if the data is still readable
DETACH TABLE test.mv_00508;
SELECT * FROM dst ORDER BY x;
USE default;
-- Reattach MV (shortcut)
ATTACH TABLE test.mv_00508;
INSERT INTO test.src VALUES (3);
SELECT * FROM test.mv_00508 ORDER BY x;
-- Drop the MV and see if the data is still readable
DROP TABLE test.mv_00508;
SELECT * FROM test.dst ORDER BY x;
DROP TABLE test.src;
DROP TABLE test.dst;