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

9 lines
250 B
MySQL
Raw Normal View History

2015-12-08 20:05:49 +00:00
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;