DP_S/build/lib/mysql/mysql-test/r/lowercase_mixed_tmpdir.result

7 lines
176 B
Plaintext
Raw Permalink Normal View History

2024-04-24 10:25:44 +08:00
drop table if exists t1;
create table t1 (id int) engine=myisam;
insert into t1 values (1);
create temporary table t2 select * from t1;
drop temporary table t2;
drop table t1;