1
# This is a test for bug 578
4
connect (con1,localhost,root,,);
5
connect (con2,localhost,root,,);
9
drop table if exists t1;
10
create table t1(a int);
13
insert into t1 values(10);
17
# The bug was that, because of the LOCK TABLES, the handler "forgot" to commit,
18
# and the other commit when we write to the binlog was not done because of
20
# PBXT: the transaction is committed, but it is a bit delayed
21
# this is due to the delay in pbxt_commit() - read GOTCHA