~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/registry.cc

  • Committer: Eric Day
  • Date: 2009-08-27 18:06:03 UTC
  • mfrom: (1125 staging)
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090827180603-hy264dq4s78dptdo
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "drizzled/qcache.h"
29
29
#include "drizzled/scheduling.h"
30
30
#include "drizzled/logging.h"
31
 
#include "drizzled/sql_udf.h"
32
 
#include "drizzled/slot/listen.h"
33
31
#include "drizzled/replication_services.h"
34
32
 
35
33
#include <string>
94
92
  add_infoschema_table(schema_table);
95
93
}
96
94
 
97
 
void plugin::Registry::add(Function_builder *udf)
98
 
{
99
 
  add_udf(udf);
100
 
}
101
 
 
102
95
void plugin::Registry::add(Logging_handler *handler)
103
96
{
104
97
  add_logger(handler);
145
138
  remove_infoschema_table(schema_table);
146
139
}
147
140
 
148
 
void plugin::Registry::remove(Function_builder *udf)
149
 
{
150
 
  remove_udf(udf);
151
 
}
152
 
 
153
141
void plugin::Registry::remove(Logging_handler *handler)
154
142
{
155
143
  remove_logger(handler);