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%';
62
SHOW STATUS LIKE 'Handler_commit%';
66
INSERT into commit_test VALUES (10);
67
SHOW STATUS LIKE 'Handler_commit%';
71
SHOW STATUS LIKE 'Handler_commit%';
75
INSERT into commit_test VALUES (10);
76
INSERT into commit_test VALUES (10);
77
SHOW STATUS LIKE 'Handler_commit%';
80
drop table commit_test;
81
SHOW STATUS LIKE 'Handler_commit%';