ClickHouse/tests/queries/0_stateless/02910_rocksdb_optimize.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
198 B
MySQL
Raw Normal View History

-- Tags: use-rocksdb
CREATE TABLE dict (key UInt64, value String) ENGINE = EmbeddedRocksDB PRIMARY KEY key;
INSERT INTO dict SELECT number, toString(number) FROM numbers(1e3);
OPTIMIZE TABLE dict;