~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/crc32/crc32udf.cc

  • Committer: Brian Aker
  • Date: 2009-10-02 19:38:12 UTC
  • mfrom: (1152.1.7 merge)
  • Revision ID: brian@gaz-20091002193812-mpd61oecep74t6gd
Merge Monty + Brian for plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
static int initialize(plugin::Registry &registry)
75
75
{
76
76
  crc32udf= new plugin::Create_function<Crc32Function>("crc32");
77
 
  registry.function.add(crc32udf);
 
77
  registry.add(crc32udf);
78
78
  return 0;
79
79
}
80
80
 
81
81
static int finalize(plugin::Registry &registry)  
82
82
{
83
 
  registry.function.remove(crc32udf);
 
83
  registry.remove(crc32udf);
84
84
  delete crc32udf;
85
85
  return 0;
86
86
}