~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/savepoints.test

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:09:22 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114050922-7pouw3ppg609lgcd
add note about what uuid lib we use

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;