~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/674719.result

  • Committer: Brian Aker
  • Date: 2011-02-04 10:18:35 UTC
  • mfrom: (2143.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110204101835-j23pv0febg9p0a2p
Merge of all local trees.

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 1747    There is already a transaction in progress
 
4
Warning 1746    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 1747    There is already a transaction in progress
 
11
Warning 1746    There is already a transaction in progress
12
12
INSERT INTO t1 VALUES (2);
13
13
ROLLBACK;
14
14
SELECT * FROM t1;