~linuxjedi/drizzle/elliott-bug-653300

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/bulk_commit.test

  • Committer: lbieber
  • Date: 2010-09-22 22:06:36 UTC
  • mfrom: (1786.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922220636-agrmqaqv2u7ln6ff
Merge Shrews - Add transaction log bulk tests
Merge Brian - Remove 3 byte indexes
Merge Stewart - Move string functions into plugin

Show diffs side-by-side

added added

removed removed

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