~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: Patrick Crews
  • Date: 2010-12-07 20:02:50 UTC
  • Revision ID: gleebix@gmail.com-20101207200250-6a27jgqalgw5bsb5
Added disabled.def file to disable drizzleslap due to Bug#684269.  Need to skip for tarball release this round

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 */
21
21
 
22
22
#include "config.h"
23
 
 
24
 
#include <drizzled/plugin.h>
25
23
#include "plugin/utility_functions/functions.h"
26
24
 
27
25
using namespace drizzled;
28
26
 
29
27
static int init(drizzled::module::Context &context)
30
28
{
31
 
  context.add(new plugin::Create_function<utility_functions::Assert>("assert"));
32
29
  context.add(new plugin::Create_function<utility_functions::Catalog>("catalog"));
33
 
  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"));
34
32
  context.add(new plugin::Create_function<utility_functions::GlobalReadLock>("global_read_lock"));
35
 
  context.add(new plugin::Create_function<utility_functions::ResultType>("result_type"));
36
33
  context.add(new plugin::Create_function<utility_functions::Kill>("kill"));
37
 
  context.add(new plugin::Create_function<utility_functions::Schema>("database"));
38
 
  context.add(new plugin::Create_function<utility_functions::Typeof>("typeof"));
39
 
  context.add(new plugin::Create_function<utility_functions::User>("user"));
40
34
 
41
35
  return 0;
42
36
}
45
39
{
46
40
  DRIZZLE_VERSION_ID,
47
41
  "Utility Functions",
48
 
  "1.4",
 
42
  "1.2",
49
43
  "Brian Aker, Stewart Smith",
50
44
  "Utility Functions.",
51
45
  PLUGIN_LICENSE_GPL,