~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/statement_boundaries.test

Merge Joe, plus I updated the tests.

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;
20
19
DROP SCHEMA IF EXISTS boundaries;
21
20
 
22
 
# Expect 1 commit count since above COMMIT before DROP SCHEMA
 
21
# Expect 1 commit count since above DROP SCHEMA
 
22
# will implicitly call COMMIT.
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
BEGIN;
41
42
DROP SCHEMA IF EXISTS boundaries;
42
 
BEGIN;
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;
87
86
drop table commit_test;
88
87
SHOW STATUS LIKE 'Handler_commit%';