1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# This test validates message format for large transactions that are broken # up into multiple Transaction messages. CREATE TABLE t (a INT NOT NULL PRIMARY KEY, b VARCHAR(100)); START TRANSACTION; --source ../plugin/transaction_log/tests/t/bulk_insert.inc COMMIT; --echo --source ../plugin/transaction_log/tests/t/bulk_check.inc DROP TABLE t; # Truncate the log file to reset for the next test --source ../plugin/transaction_log/tests/t/truncate_log.inc |