ClickHouse/tests/queries/0_stateless/00841_temporary_table_database.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 }