~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: Andrew Hutchings
  • Date: 2010-11-09 13:38:01 UTC
  • mto: (1919.1.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 1920.
  • Revision ID: andrew@linuxjedi.co.uk-20101109133801-byjzsao76346395x
Add FLUSH GLOBAL STATUS; command
Clears the global status variables for the server

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,