2
SHOW STATUS LIKE 'Handler_commit%';
6
SHOW STATUS LIKE 'Handler_commit%';
10
DROP SCHEMA IF EXISTS boundaries;
12
Note 1008 Can't drop schema 'boundaries'; schema doesn't exist
13
SHOW STATUS LIKE 'Handler_commit%';
17
SHOW STATUS LIKE 'Handler_commit%';
21
SHOW STATUS LIKE 'Handler_commit%';
24
DROP SCHEMA IF EXISTS boundaries;
26
Note 1008 Can't drop schema 'boundaries'; schema doesn't exist
29
SHOW STATUS LIKE 'Handler_commit%';
32
CREATE TABLE commit_test (a int);
33
SHOW STATUS LIKE 'Handler_commit%';
36
INSERT into commit_test VALUES (10);
37
SHOW STATUS LIKE 'Handler_commit%';
40
INSERT into commit_test VALUES (10), (20);
41
SHOW STATUS LIKE 'Handler_commit%';
44
INSERT into commit_test VALUES (10);
45
SHOW STATUS LIKE 'Handler_commit%';
49
INSERT into commit_test VALUES (10);
50
SHOW STATUS LIKE 'Handler_commit%';
54
SHOW STATUS LIKE 'Handler_commit%';
58
INSERT into commit_test VALUES (10);
59
SHOW STATUS LIKE 'Handler_commit%';
63
SHOW STATUS LIKE 'Handler_commit%';
67
INSERT into commit_test VALUES (10);
68
SHOW STATUS LIKE 'Handler_commit%';
72
SHOW STATUS LIKE 'Handler_commit%';
76
INSERT into commit_test VALUES (10);
77
INSERT into commit_test VALUES (10);
78
SHOW STATUS LIKE 'Handler_commit%';
82
drop table commit_test;
83
SHOW STATUS LIKE 'Handler_commit%';