ClickHouse/tests/queries/0_stateless/00841_temporary_table_database.sql
2024-05-30 19:41:08 +00:00

6 lines
201 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 BAD_DATABASE_FOR_TEMPORARY_TABLE }