~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/savepoints.test

  • Committer: Brian Aker
  • Date: 2010-10-06 18:16:00 UTC
  • mto: (1818.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1819.
  • Revision ID: brian@tangent.org-20101006181600-q7zuzw31zlq030ra
Convert sql_string to use size_t (this should clean up ICC warnings).

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
 
DROP TABLE t1;