~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-21 16:39:40 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20101221163940-c1pfo1jjvx7909xq
Tags: 2010.12.06-0ubuntu1
* New upstream release.
* Added libaio-dev build depend for InnoDB.
* Removed libpcre patch - applied upstream.

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