blob: 1de387f6e4cf7945268cfffabbce0d8d3523e371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
drop table if exists t1;
drop table if exists t1;
--error 1051;
drop table t1;
create table t1(n int);
insert into t1 values(1);
create temporary table t1( n int);
insert into t1 values(2);
--error 1050;
create table t1(n int);
drop table t1;
select * from t1;
|