~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/savepoints.test

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
Remove custom error.

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;