~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/logging_stats.h

  • Committer: patrick crews
  • Date: 2010-05-20 03:29:50 UTC
  • mto: This revision was merged to the branch mainline in revision 1565.
  • Revision ID: patrick.crews@sun.com-20100520032950-7452uruysx9kb6bn
Fixed incorrectly altered test commenting to reflect the proper bug descriptions (mysqldump v. drizzledump)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include "scoreboard_slot.h"
34
34
#include "cumulative_stats.h"
 
35
#include "user_commands.h"
35
36
#include "scoreboard.h"
36
37
 
37
38
#include <drizzled/atomics.h>
54
55
 
55
56
  virtual bool postEnd(drizzled::Session *session);
56
57
 
57
 
  virtual bool resetGlobalScoreboard();
58
 
 
59
58
  bool isEnabled() const
60
59
  {
61
60
    return is_enabled;
89
88
  drizzled::atomic<bool> is_enabled;
90
89
 
91
90
  void updateCurrentScoreboard(ScoreboardSlot *scoreboard_slot, drizzled::Session *session);
92
 
 
93
 
  typedef std::vector<std::vector<ScoreboardSlot* >* > ScoreBoardVectors;
94
91
};
95
92
#endif /* PLUGIN_LOGGING_STATS_LOGGING_STATS_H */