~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/create_schema.inc

  • 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
 
2
# Test CREATE SCHEMA and replication
 
3
#
 
4
 
 
5
--disable_warnings
 
6
DROP SCHEMA IF EXISTS my_new_schema;
 
7
--enable_warnings
 
8
 
 
9
CREATE SCHEMA my_new_warnings;
 
10
 
 
11
DROP SCHEMA my_new_warnings;