~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/674719.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:
1
1
START TRANSACTION;
2
2
START TRANSACTION;
3
3
Warnings:
4
 
Warning 1746    There is already a transaction in progress
 
4
Warning 1747    There is already a transaction in progress
5
5
ROLLBACK;
6
6
CREATE TABLE t1 (a int);
7
7
START TRANSACTION;
8
8
INSERT INTO t1 VALUES (1);
9
9
START TRANSACTION;
10
10
Warnings:
11
 
Warning 1746    There is already a transaction in progress
 
11
Warning 1747    There is already a transaction in progress
12
12
INSERT INTO t1 VALUES (2);
13
13
ROLLBACK;
14
14
SELECT * FROM t1;