# This is a test for bug 578connect(con1,localhost,root,,);connect(con2,localhost,root,,);connectioncon1;droptableifexistst1;createtablet1(aint)type=innodb;locktablest1write;insertintot1values(10);disconnectcon1;connectioncon2;# The bug was that, because of the LOCK TABLES, the handler "forgot" to commit,# and the other commit when we write to the binlog was not done because of# binlog-ignore-db select*fromt1;droptablet1;