mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
22 lines
694 B
SQL
22 lines
694 B
SQL
DROP DATABASE IF EXISTS memory_01069;
|
|
CREATE DATABASE memory_01069 ENGINE = Memory;
|
|
SHOW CREATE DATABASE memory_01069;
|
|
|
|
CREATE TABLE memory_01069.mt (n UInt8) ENGINE = MergeTree() ORDER BY n;
|
|
CREATE TABLE memory_01069.file (n UInt8) ENGINE = File(CSV);
|
|
|
|
INSERT INTO memory_01069.mt VALUES (1), (2);
|
|
INSERT INTO memory_01069.file VALUES (3), (4);
|
|
|
|
SELECT * FROM memory_01069.mt ORDER BY n;
|
|
SELECT * FROM memory_01069.file ORDER BY n;
|
|
|
|
DROP TABLE memory_01069.mt;
|
|
SELECT * FROM memory_01069.mt ORDER BY n; -- { serverError 60 }
|
|
SELECT * FROM memory_01069.file ORDER BY n;
|
|
|
|
SHOW CREATE TABLE memory_01069.mt; -- { serverError 60 }
|
|
SHOW CREATE TABLE memory_01069.file;
|
|
|
|
DROP DATABASE memory_01069;
|