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

9 lines
220 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS stripelog;
CREATE TABLE stripelog (x UInt8) ENGINE = StripeLog;
2015-12-08 20:05:49 +00:00
SELECT * FROM stripelog ORDER BY x;
INSERT INTO stripelog VALUES (1), (2);
SELECT * FROM stripelog ORDER BY x;
2015-12-08 20:05:49 +00:00
DROP TABLE stripelog;