ClickHouse/tests/queries/0_stateless/00564_temporary_table_management.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
263 B
MySQL
Raw Normal View History

2018-02-14 04:37:39 +00:00
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;