summaryrefslogtreecommitdiff
path: root/mysql-test/main/temp_table_symlink.result
blob: 1c5c68170ff8a4e7a8b4df3374042da20520a386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
create table d1 (a int);
create temporary table t1 (a int);
create temporary table t2 (a int);
Got one of the listed errors
create temporary table t3 (a int) engine=Aria;
Got one of the listed errors
select * from information_schema.columns where table_schema='test';
Got one of the listed errors
flush tables;
select * from d1;
a
drop temporary table t1;
drop table d1;