~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/savepoints.result

  • Committer: Mark Atwood
  • Date: 2011-08-17 10:53:14 UTC
  • Revision ID: me@mark.atwood.name-20110817105314-6gwaf1g9gja7ms97
Update test result files, error code is now 1746 for transaction in progress

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
3
23
23
START TRANSACTION;
24
24
Warnings:
25
 
Warning 1746    There is already a transaction in progress
 
25
Warning 1747    There is already a transaction in progress
26
26
INSERT INTO t1 VALUES (4);
27
27
SAVEPOINT A;
28
28
INSERT INTO t1 VALUES (5);
36
36
3
37
37
START TRANSACTION;
38
38
Warnings:
39
 
Warning 1746    There is already a transaction in progress
 
39
Warning 1747    There is already a transaction in progress
40
40
INSERT INTO t1 VALUES (4);
41
41
SAVEPOINT A;
42
42
INSERT INTO t1 VALUES (5);