Commit 3d863df6 authored by Matthias Leich's avatar Matthias Leich

Merge of fix for bug 44493 into GCA tree

parents 8e9b79ca bc4e0221
...@@ -4,3 +4,5 @@ insert into t1 set a = -1; ...@@ -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; ...@@ -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; ...@@ -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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment