ClickHouse/dbms/tests/queries/0_stateless/00288_empty_stripelog.sql

9 lines
220 B
SQL

DROP TABLE IF EXISTS stripelog;
CREATE TABLE stripelog (x UInt8) ENGINE = StripeLog;
SELECT * FROM stripelog ORDER BY x;
INSERT INTO stripelog VALUES (1), (2);
SELECT * FROM stripelog ORDER BY x;
DROP TABLE stripelog;