2
# Simple test of the serial event log for autocommit behaviour.
6
DROP TABLE IF EXISTS t1;
13
, padding VARCHAR(200) NOT NULL
16
INSERT INTO t1 VALUES (1, "I love testing.");
17
INSERT INTO t1 VALUES (2, "I hate testing.");
21
# Try the same thing with auto_commit turned on
22
# This should produce a commit between inserts...
28
, padding VARCHAR(200) NOT NULL
31
INSERT INTO t1 VALUES (1, "I love testing.");
32
INSERT INTO t1 VALUES (2, "I hate testing.");