~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/function_engine/function.cc

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
{
41
41
  information_message->set_name(INFORMATION_SCHEMA_IDENTIFIER.getSchemaName());
42
42
  information_message->set_collation("utf8_general_ci");
43
 
  information_message->mutable_replication_options()->set_dont_replicate(true);
 
43
  message::set_is_replicated(*information_message, false);
44
44
 
45
45
  data_dictionary_message->set_name(DATA_DICTIONARY_IDENTIFIER.getSchemaName());
46
46
  data_dictionary_message->set_collation("utf8_general_ci");
47
 
  data_dictionary_message->mutable_replication_options()->set_dont_replicate(true);
 
47
  message::set_is_replicated(*data_dictionary_message, false);
48
48
}
49
49
 
50
50