~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2010-02-25 20:20:08 UTC
  • mto: (1309.2.14 build)
  • mto: This revision was merged to the branch mainline in revision 1319.
  • Revision ID: jpipes@serialcoder-20100225202008-i2debe8qphdw2tms
Fixes transaction log/replication for multi-column primary keys.  Changes CREATE SCHEMA to not use statement-base RAW_SQL and instead use a derived message::Statement subclass.

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 IF EXISTS 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;