~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/service/function.cc

Some carnage. I'm sure it'll need fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
void service::Function::add(plugin::Function *udf)
32
32
{
33
 
  plugin::Registry &plugins= plugin::Registry::singleton();
34
 
  plugins.add(udf);
35
33
  udf_registry.add(udf);
36
34
}
37
35
 
38
36
void service::Function::remove(const plugin::Function *udf)
39
37
{
40
 
  plugin::Registry &plugins= plugin::Registry::singleton();
41
 
  plugins.remove(udf);
42
38
  udf_registry.remove(udf);
43
39
}
44
40