~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

MergeĀ inĀ replicate_options.proto

Show diffs side-by-side

added added

removed removed

Lines of Context:
975
975
        | REPLICATION opt_equal TRUE_SYM
976
976
          {
977
977
            statement::CreateSchema *statement= (statement::CreateSchema *)Lex->statement;
978
 
            message::Schema::Options *options= statement->schema_message.mutable_options();
 
978
            message::ReplicationOptions *options= statement->schema_message.mutable_replication_options();
979
979
            options->set_dont_replicate(true);
980
980
          }
981
981
        | REPLICATION opt_equal FALSE_SYM
982
982
          {
983
983
            statement::CreateSchema *statement= (statement::CreateSchema *)Lex->statement;
984
 
            message::Schema::Options *options= statement->schema_message.mutable_options();
 
984
            message::ReplicationOptions *options= statement->schema_message.mutable_replication_options();
985
985
            options->set_dont_replicate(false);
986
986
          }
987
987
        | ident_or_text equal ident_or_text