~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/statement_boundaries.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:
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%';