mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
ISSUES-117 add test
This commit is contained in:
parent
b89268ceb8
commit
f88f4567d0
@ -1 +0,0 @@
|
||||
temp_tab
|
@ -1,4 +0,0 @@
|
||||
DROP TEMPORARY TABLE IF EXISTS temp_tab;
|
||||
CREATE TEMPORARY TABLE temp_tab (number UInt64);
|
||||
SHOW TEMPORARY TABLES LIKE 'temp_tab';
|
||||
DROP TEMPORARY TABLE temp_tab;
|
@ -0,0 +1,4 @@
|
||||
1
|
||||
CREATE TEMPORARY TABLE temp_tab ( number UInt64) ENGINE = Memory
|
||||
temp_tab
|
||||
0
|
@ -0,0 +1,7 @@
|
||||
DROP TEMPORARY TABLE IF EXISTS temp_tab;
|
||||
CREATE TEMPORARY TABLE temp_tab (number UInt64);
|
||||
EXISTS TEMPORARY TABLE temp_tab;
|
||||
SHOW CREATE TEMPORARY TABLE temp_tab;
|
||||
SHOW TEMPORARY TABLES LIKE 'temp_tab';
|
||||
DROP TEMPORARY TABLE temp_tab;
|
||||
EXISTS TEMPORARY TABLE temp_tab;
|
Loading…
Reference in New Issue
Block a user