mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00

Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
15 lines
275 B
Plaintext
15 lines
275 B
Plaintext
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;
|