~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • Committer: Patrick Crews
  • Date: 2011-01-29 14:17:35 UTC
  • mto: (2126.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2127.
  • Revision ID: gleebix@gmail.com-20110129141735-3y2658vt5ur0a33o
Fixes to make test-dbqp

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
 
6
 *  Copyright (C) 2008 Sun Microsystems, Inc.
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;}
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 */