~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/savepoints.result

  • Committer: Andrew Hutchings
  • Date: 2011-02-07 17:20:59 UTC
  • mfrom: (2148 staging)
  • mto: (2148.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 2149.
  • Revision ID: andrew@linuxjedi.co.uk-20110207172059-dyeahrgzrlincoe3
Merge with trunk

Show diffs side-by-side

added added

removed removed

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