~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: kalebral at gmail
  • Date: 2010-12-04 04:58:08 UTC
  • mto: (1971.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1972.
  • Revision ID: kalebral@gmail.com-20101204045808-acto22oxfg43m02e
a few more updates of files that did not have license or had incorrect license structure

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,