CREATE DATABASE IF NOT EXISTS test; CREATE TABLE t1(a Int64, b String) ENGINE = MergeTree() ORDER BY (a) PRIMARY KEY (a); DROP TABLE t1;