~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • 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:
51
51
  virtual bool pre(Session *) {return false;}
52
52
  virtual bool post(Session *) {return false;}
53
53
  virtual bool postEnd(Session*) {return false;}
 
54
  virtual bool resetGlobalScoreboard() {return false;}
54
55
 
55
56
  static bool addPlugin(Logging *handler);
56
57
  static void removePlugin(Logging *handler);
57
58
  static bool preDo(Session *session);
58
59
  static bool postDo(Session *session);
59
60
  static bool postEndDo(Session *session);
 
61
  static bool resetStats(Session *session);
60
62
};
61
63
 
62
64
} /* namespace plugin */