~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/util_function/functions.cc

  • Committer: Brian Aker
  • Date: 2010-10-21 06:52:47 UTC
  • mto: (1866.1.1 merge)
  • mto: This revision was merged to the branch mainline in revision 1867.
  • Revision ID: brian@tangent.org-20101021065247-jjtvvnfpr4dfn4lo
Move database() over to the util_function plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
static int init(drizzled::module::Context &context)
28
28
{
29
29
  context.add(new plugin::Create_function<util_function::Catalog>("catalog"));
 
30
  context.add(new plugin::Create_function<util_function::Schema>("database"));
30
31
 
31
32
  return 0;
32
33
}