~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/savepoints.test

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
SAVEPOINT A;
13
13
 
14
14
--echo End Test of Bug 534806
15
 
COMMIT;
 
15
 
16
16
DROP TABLE t1;
17
17
 
18
18
# Let's test the non-edge case for SAVEPOINTS:
62
62
 
63
63
# t1 should have 1,2,3,4 in it.
64
64
SELECT * FROM t1;
65
 
COMMIT;
66
65
DROP TABLE t1;
67
66
 
68
67
82
81
ROLLBACK TO SAVEPOINT A;
83
82
 
84
83
--echo End Test of Bug 542299
85
 
COMMIT;
86
84
DROP TABLE t1;