~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: Andrew Hutchings
  • Date: 2010-12-06 19:36:53 UTC
  • mfrom: (1976 staging)
  • mto: This revision was merged to the branch mainline in revision 1991.
  • Revision ID: andrew@linuxjedi.co.uk-20101206193653-l85vryv18jb0yxx8
Merge with trunk

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<utility_functions::Catalog>("catalog"));
30
 
  context.add(new plugin::Create_function<utility_functions::Execute>("execute"));
 
30
  context.add(new plugin::Create_function<utility_functions::Schema>("database"));
 
31
  context.add(new plugin::Create_function<utility_functions::User>("user"));
31
32
  context.add(new plugin::Create_function<utility_functions::GlobalReadLock>("global_read_lock"));
32
33
  context.add(new plugin::Create_function<utility_functions::Kill>("kill"));
33
 
  context.add(new plugin::Create_function<utility_functions::Schema>("database"));
34
 
  context.add(new plugin::Create_function<utility_functions::User>("user"));
35
34
 
36
35
  return 0;
37
36
}
40
39
{
41
40
  DRIZZLE_VERSION_ID,
42
41
  "Utility Functions",
43
 
  "1.3",
 
42
  "1.2",
44
43
  "Brian Aker, Stewart Smith",
45
44
  "Utility Functions.",
46
45
  PLUGIN_LICENSE_GPL,