mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
6 lines
172 B
SQL
6 lines
172 B
SQL
CREATE TEMPORARY TABLE t1_00841 (x UInt8);
|
|
INSERT INTO t1_00841 VALUES (1);
|
|
SELECT * FROM t1_00841;
|
|
|
|
CREATE TEMPORARY TABLE test.t2_00841 (x UInt8); -- { serverError 442 }
|