~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2010-12-09 19:40:05 UTC
  • mfrom: (1991.1.2 build)
  • Revision ID: kalebral@gmail.com-20101209194005-hpxailmc9afmvelh
Remove disabling of drizzleslap test
Merge Shrews - fix bug 683147: Large row affecting statements failing mid-transaction may not get undone properly by TransactionServices if part of multi-message Transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
--source ../plugin/transaction_log/tests/t/truncate_log.inc
7
7
--enable_query_log
8
8
 
9
 
CREATE TABLE t (a INT NOT NULL PRIMARY KEY, b VARCHAR(100));
 
9
CREATE TABLE t (a INT NOT NULL AUTO_INCREMENT PRIMARY KEY, b VARCHAR(16000));
10
10
 
 
11
--echo Test segmenting a single statement changing a lot of rows
 
12
--echo
11
13
START TRANSACTION;
12
 
 
13
 
--source ../plugin/transaction_log/tests/t/bulk_insert.inc
14
 
 
 
14
INSERT INTO t (b) VALUES
 
15
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
16
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
17
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
18
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
19
  (REPEAT(".", 16000)), (REPEAT(".", 16000));
15
20
COMMIT;
16
21
 
17
22
--echo