2
SHOW STATUS LIKE 'Handler_commit%';
6
SHOW STATUS LIKE 'Handler_commit%';
9
DROP SCHEMA IF EXISTS boundaries;
11
Note 1008 Can't drop database 'boundaries'; database doesn't exist
12
SHOW STATUS LIKE 'Handler_commit%';
16
SHOW STATUS LIKE 'Handler_commit%';
20
SHOW STATUS LIKE 'Handler_commit%';
24
DROP SCHEMA IF EXISTS boundaries;
26
Note 1008 Can't drop database 'boundaries'; database doesn't exist
28
SHOW STATUS LIKE 'Handler_commit%';
31
CREATE TABLE commit_test (a int);
32
SHOW STATUS LIKE 'Handler_commit%';
35
INSERT into commit_test VALUES (10);
36
SHOW STATUS LIKE 'Handler_commit%';
39
INSERT into commit_test VALUES (10), (20);
40
SHOW STATUS LIKE 'Handler_commit%';
43
INSERT into commit_test VALUES (10);
44
SHOW STATUS LIKE 'Handler_commit%';
48
INSERT into commit_test VALUES (10);
49
SHOW STATUS LIKE 'Handler_commit%';
53
SHOW STATUS LIKE 'Handler_commit%';
57
INSERT into commit_test VALUES (10);
58
SHOW STATUS LIKE 'Handler_commit%';
63
Warning 1196 Some non-transactional changed tables couldn't be rolled back
64
SHOW STATUS LIKE 'Handler_commit%';
68
INSERT into commit_test VALUES (10);
69
SHOW STATUS LIKE 'Handler_commit%';
73
SHOW STATUS LIKE 'Handler_commit%';
77
INSERT into commit_test VALUES (10);
78
INSERT into commit_test VALUES (10);
79
SHOW STATUS LIKE 'Handler_commit%';
82
drop table commit_test;
83
SHOW STATUS LIKE 'Handler_commit%';