~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/statement_boundaries.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:
16
16
 
17
17
SHOW STATUS LIKE 'Handler_commit%';
18
18
 
 
19
COMMIT;
19
20
DROP SCHEMA IF EXISTS boundaries;
20
21
 
21
 
# Expect 1 commit count since above DROP SCHEMA
22
 
# will implicitly call COMMIT.
 
22
# Expect 1 commit count since above COMMIT before DROP SCHEMA
23
23
#
24
24
# When we get transactional DDL, should be 0.
25
25
SHOW STATUS LIKE 'Handler_commit%';
38
38
SET AUTOCOMMIT= 1;
39
39
 
40
40
SHOW STATUS LIKE 'Handler_commit%';
 
41
DROP SCHEMA IF EXISTS boundaries;
41
42
BEGIN;
42
 
DROP SCHEMA IF EXISTS boundaries;
43
43
COMMIT;
44
44
 
45
45
SHOW STATUS LIKE 'Handler_commit%';
83
83
 
84
84
 
85
85
SHOW STATUS LIKE 'Handler_commit%';
 
86
COMMIT;
86
87
drop table commit_test;
87
88
SHOW STATUS LIKE 'Handler_commit%';