~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/default_replicator/default_replicator.cc

Merged in latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
static int init(drizzled::plugin::Registry &registry)
77
77
{
78
 
  default_replicator= new DefaultReplicator();
 
78
  default_replicator= new DefaultReplicator("default_replicator");
79
79
  registry.add(default_replicator);
80
80
  return 0;
81
81
}