mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
added test for drop temporary table
This commit is contained in:
parent
9c6f1a1e4b
commit
89df47fd52
@ -0,0 +1 @@
|
|||||||
|
0
|
@ -0,0 +1,8 @@
|
|||||||
|
drop table if exists temp_tab;
|
||||||
|
create temporary table temp_tab (number UInt64);
|
||||||
|
insert into temp_tab select number from system.numbers limit 1;
|
||||||
|
select number from temp_tab;
|
||||||
|
drop table temp_tab;
|
||||||
|
create temporary table temp_tab (number UInt64);
|
||||||
|
select number from temp_tab;
|
||||||
|
drop table temp_tab;
|
Loading…
Reference in New Issue
Block a user