ClickHouse/dbms/tests/queries/0_stateless/00288_empty_stripelog.sql
2015-12-08 23:05:49 +03:00

9 lines
250 B
SQL

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