dbms: added test for temporary table [#METR-14449].

This commit is contained in:
Alexey Milovidov 2014-12-24 00:24:34 +03:00
parent beafa02b2e
commit 7da67fd139
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,3 @@
CREATE TEMPORARY TABLE t (a UInt8);
INSERT INTO t VALUES (1);
SELECT * FROM t;