~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/savepoints.result

  • Committer: vjsamuel1990 at gmail
  • Date: 2011-02-04 18:28:39 UTC
  • mfrom: (2143 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2147.
  • Revision ID: vjsamuel1990@gmail.com-20110204182839-dstyv9v7ewi11p3g
Merge 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 1747    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 1747    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);