~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Mark Atwood
  • Date: 2011-04-28 18:13:08 UTC
  • mfrom: (2293.2.1 bug771572)
  • Revision ID: me@mark.atwood.name-20110428181308-037gn1q3x3p9ej0m
merge ~skinny.moey/drizzle/bug771572
fix Bug #771572: DEFINER clause breaks replication

Show diffs side-by-side

added added

removed removed

Lines of Context:
980
980
 
981
981
opt_create_database_options:
982
982
          /* empty */ {}
983
 
        | default_collation_schema {}
984
 
        | opt_database_custom_options {}
 
983
        | default_collation_schema
 
984
        | default_collation_schema opt_database_custom_options
 
985
        | default_collation_schema ',' opt_database_custom_options
 
986
        | opt_database_custom_options
985
987
        ;
986
988
 
987
989
opt_database_custom_options:
988
990
        custom_database_option
 
991
        | custom_database_option opt_database_custom_options
989
992
        | custom_database_option ',' opt_database_custom_options
990
993
        ;
991
994