~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/bulk_rollback.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
11
START TRANSACTION;
12
 
 
13
 
--source ../plugin/transaction_log/tests/t/bulk_insert.inc
14
 
 
 
12
INSERT INTO t (b) VALUES
 
13
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
14
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
15
  (REPEAT(".", 16000)), (REPEAT(".", 16000)), 
 
16
  (REPEAT(".", 16000)), (REPEAT(".", 16000)),
 
17
  (REPEAT(".", 16000)), (REPEAT(".", 16000));
15
18
ROLLBACK;
16
19
 
17
20
--echo