mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
1f6ecc0cd3
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
14 lines
275 B
Text
14 lines
275 B
Text
connect (con1,localhost,root,,);
|
|
connect (con2,localhost,root,,);
|
|
connection con1;
|
|
dirty_close con1;
|
|
connection con2;
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
create table t1 (n int);
|
|
insert into t1 values (1),(2),(3);
|
|
select * from t1;
|
|
drop table t1;
|