mirror of
https://github.com/MariaDB/server.git
synced 2025-05-10 02:01:19 +03:00

once after the lock. Now changed test case and added eval support to mysqltest to make it easier to debug
13 lines
261 B
Plaintext
13 lines
261 B
Plaintext
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;
|