~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/dict/create_replication.cc

  • Committer: Brian Aker
  • Date: 2011-04-03 06:02:00 UTC
  • mto: (2263.2.2 drizzle-ga)
  • mto: This revision was merged to the branch mainline in revision 2268.
  • Revision ID: brian@tangent.org-20110403060200-g8v2x1k33rrpx1an
This adds the concept of a definer to a table definition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include <config.h>
22
22
 
 
23
#include <drizzled/message.h>
23
24
#include "read_replication.h"
24
25
#include "create_replication.h"
25
26
 
128
129
  drizzled::message::Table::TableOptions *options= table_message->mutable_options();
129
130
  options->set_collation_id(drizzled::my_charset_bin.number);
130
131
  options->set_collation(drizzled::my_charset_bin.name);
131
 
  options->set_dont_replicate(true);
 
132
  drizzled::message::set_is_replicated(*table_message, false);
132
133
 
133
134
  drizzled::message::Table::Field *field= table_message->add_field();
134
135
  field->set_name("ID");