~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 21:41:05 UTC
  • mto: (2192.1.1 drizzle-staging)
  • mto: This revision was merged to the branch mainline in revision 2193.
  • Revision ID: brian@tangent.org-20110222214105-78h53tyxc9q64ce2
This fixes the message such that the table inherits the no replication
property from the schema.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
  proto.set_type(drizzled::message::Table::FUNCTION);
41
41
  proto.set_creation_timestamp(0);
42
42
  proto.set_update_timestamp(0);
43
 
 
44
 
  proto.mutable_options()->set_dont_replicate(true);
 
43
  message::set_is_replicated(proto, false);
45
44
}
46
45
 
47
46
bool plugin::TableFunction::addPlugin(plugin::TableFunction *tool)