~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2011-03-09 06:09:45 UTC
  • mto: (2227.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: brian@tangent.org-20110309060945-2myym9cbx0tofa1k
Merge fixes for Shrews on bug 731189.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1051
1051
          }
1052
1052
        | REPLICATE opt_equal TRUE_SYM
1053
1053
          {
1054
 
            Lex->table()->mutable_options()->set_dont_replicate(false);
 
1054
            message::set_is_replicated(*Lex->table(), true);
1055
1055
          }
1056
1056
        | REPLICATE opt_equal FALSE_SYM
1057
1057
          {
1058
 
            Lex->table()->mutable_options()->set_dont_replicate(true);
 
1058
            message::set_is_replicated(*Lex->table(), false);
1059
1059
          }
1060
1060
        |  ROW_FORMAT_SYM equal row_format_or_text
1061
1061
          {