ClickHouse/tests/queries/0_stateless/00841_temporary_table_database.sql

6 lines
172 B
MySQL
Raw Normal View History

2019-06-03 17:36:27 +00:00
CREATE TEMPORARY TABLE t1_00841 (x UInt8);
INSERT INTO t1_00841 VALUES (1);
SELECT * FROM t1_00841;
2019-02-11 14:55:24 +00:00
2019-06-03 17:36:27 +00:00
CREATE TEMPORARY TABLE test.t2_00841 (x UInt8); -- { serverError 442 }