ISSUES-117 add test

This commit is contained in:
zhang2014 2018-02-14 12:37:39 +08:00
parent b89268ceb8
commit f88f4567d0
4 changed files with 11 additions and 5 deletions

View File

@ -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;

View File

@ -0,0 +1,4 @@
1
CREATE TEMPORARY TABLE temp_tab ( number UInt64) ENGINE = Memory
temp_tab
0

View File

@ -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;