~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/cumulative_stats.h

  • Committer: Monty Taylor
  • Date: 2010-08-21 02:55:13 UTC
  • mfrom: (1711.6.12 staging)
  • Revision ID: mordred@inaugust.com-20100821025513-3xyidjf8dodeh4gy
Remove btree heap index.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
    return cumulative_stats_by_user_max; 
74
74
  }
75
75
 
76
 
  uint64_t getCumulativeSizeBytes()
77
 
  {
78
 
    return cumulative_size_bytes;
79
 
  }
80
 
 
81
76
  int32_t getCumulativeStatsLastValidIndex();
82
77
 
83
78
  bool hasOpenUserSlots()
93
88
  std::vector<ScoreboardSlot* > *cumulative_stats_by_user_vector;
94
89
  GlobalStats *global_stats; 
95
90
  StatusVars *global_status_vars;
96
 
  uint64_t cumulative_size_bytes;
97
91
  int32_t cumulative_stats_by_user_max;
98
92
  drizzled::atomic<int32_t> last_valid_index;
99
93
  bool isOpenUserSlots;