~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • Committer: lbieber
  • Date: 2010-09-08 16:39:38 UTC
  • mfrom: (1749.1.2 build)
  • Revision ID: lbieber@orisndriz03-20100908163938-gdg763wz3cvwpjpi
Merge Andrew - fix bug 619591 - needed to clean up embedded innodb test results
Merge Lee - fix bug 628336 - Remove unused error messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *  Definitions required for Query Logging plugin
5
5
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
6
 *  Copyright (C) 2008 Sun Microsystems
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
9
9
 *  it under the terms of the GNU General Public License as published by
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;}
55
54
 
56
55
  static bool addPlugin(Logging *handler);
57
56
  static void removePlugin(Logging *handler);
58
57
  static bool preDo(Session *session);
59
58
  static bool postDo(Session *session);
60
59
  static bool postEndDo(Session *session);
61
 
  static bool resetStats(Session *session);
62
60
};
63
61
 
64
62
} /* namespace plugin */