~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/savepoints.test

  • Committer: Lee Bieber
  • Date: 2011-01-21 05:20:24 UTC
  • mfrom: (2099.1.3 build)
  • Revision ID: kalebral@gmail.com-20110121052024-43pl0aj8j5fmqnvl
Merge Stewart - Fix bug 664222: DDL operations have an implicit commit
Merge Stewart - Fix bug #695201: autocommit=1 not resetting session->server_status properly when committing ongoing txn
Add BSD copyright file to win32/config.h
Merge Brian - cleanup user_locks.kill_wait test

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
 
 
 
15
COMMIT;
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;
65
66
DROP TABLE t1;
66
67
 
67
68
81
82
ROLLBACK TO SAVEPOINT A;
82
83
 
83
84
--echo End Test of Bug 542299
 
85
COMMIT;
84
86
DROP TABLE t1;