1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-07 06:01:31 +03:00

Merge polly.local:/tmp/maint/bug22728/my41-bug22728

into  polly.local:/home/kaa/src/maint/m41-maint--07OGk
This commit is contained in:
kaa@polly.local
2006-10-12 13:39:52 +04:00
3 changed files with 27 additions and 1 deletions

View File

@ -104,3 +104,13 @@ SELECT `id1` FROM `t1` WHERE `id1` NOT IN (SELECT `id1` FROM `t2` WHERE `id2` =
id1
2
DROP TABLE t1, t2;
flush status;
create table t1 (c1 int) engine=innodb;
handler t1 open;
handler t1 read first;
c1
show /*!50002 GLOBAL */ status like 'Handler_rollback';
Variable_name Value
Handler_rollback 0
drop table t1;
End of 4.1 tests