mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge of fix for bug 44493 into GCA tree
This commit is contained in:
@ -4,3 +4,5 @@ insert into t1 set a = -1;
|
|||||||
optimize table t1;
|
optimize table t1;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.t1 optimize status OK
|
test.t1 optimize status OK
|
||||||
|
==== clean up ====
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -14,3 +14,6 @@ insert into t1 set a = -1;
|
|||||||
# NOTE: The database needs to be shutdown and restarted (here) for
|
# NOTE: The database needs to be shutdown and restarted (here) for
|
||||||
# the test to work. It's included for reference only.
|
# the test to work. It's included for reference only.
|
||||||
optimize table t1;
|
optimize table t1;
|
||||||
|
|
||||||
|
--echo ==== clean up ====
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -33,8 +33,15 @@ rollback;
|
|||||||
connection b;
|
connection b;
|
||||||
reap;
|
reap;
|
||||||
rollback;
|
rollback;
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
connection a;
|
||||||
|
disconnect a;
|
||||||
|
--source include/wait_until_disconnected.inc
|
||||||
|
connection b;
|
||||||
|
disconnect b;
|
||||||
|
--source include/wait_until_disconnected.inc
|
||||||
connection default;
|
connection default;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
drop function f1;
|
drop function f1;
|
||||||
disconnect a;
|
|
||||||
disconnect b;
|
|
||||||
|
Reference in New Issue
Block a user