~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/schema.result

  • Committer: Brian Aker
  • Date: 2010-03-03 05:02:36 UTC
  • mfrom: (1309.2.19 build)
  • Revision ID: brian@gaz-20100303050236-y7dotibgwks12gyp
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP SCHEMA IF EXISTS my_new_schema;
 
2
CREATE SCHEMA my_new_warnings;
 
3
DROP SCHEMA my_new_warnings;
 
4
START TRANSACTION;
 
5
DROP SCHEMA `my_new_schema`;
 
6
COMMIT;
 
7
START TRANSACTION;
 
8
CREATE SCHEMA `my_new_warnings` COLLATE utf8_general_ci;
 
9
COMMIT;
 
10
START TRANSACTION;
 
11
DROP SCHEMA `my_new_warnings`;
 
12
COMMIT;
 
13
SET GLOBAL transaction_log_truncate_debug= true;