~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/statement_boundaries.result

  • Committer: Stewart Smith
  • Date: 2011-01-04 12:25:40 UTC
  • mto: (2099.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2100.
  • Revision ID: stewart@flamingspork.com-20110104122540-62o9l8npsitvg0qk
statement_boundaries test relied on implicit commits in schema operations. use explicit commits instead

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
SHOW STATUS LIKE 'Handler_commit%';
7
7
Variable_name   Value
8
8
Handler_commit  0
 
9
COMMIT;
9
10
DROP SCHEMA IF EXISTS boundaries;
10
11
Warnings:
11
12
Note    1008    Can't drop schema 'boundaries'; schema doesn't exist
20
21
SHOW STATUS LIKE 'Handler_commit%';
21
22
Variable_name   Value
22
23
Handler_commit  1
23
 
BEGIN;
24
24
DROP SCHEMA IF EXISTS boundaries;
25
25
Warnings:
26
26
Note    1008    Can't drop schema 'boundaries'; schema doesn't exist
 
27
BEGIN;
27
28
COMMIT;
28
29
SHOW STATUS LIKE 'Handler_commit%';
29
30
Variable_name   Value