~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:29:48 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032948-ocaksrku0oqxw8aa
fix more docs warnings: underline/overline too short

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