~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statistics_variables.h

  • Committer: Brian Aker
  • Date: 2010-07-15 23:18:11 UTC
  • mto: This revision was merged to the branch mainline in revision 1661.
  • Revision ID: brian@gaz-20100715231811-c5erivy1nvwf6bii
Merge in move identifier work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
typedef struct global_counters
34
34
{
35
35
  uint64_t max_used_connections;
36
 
  uint64_t connections;
37
36
  uint64_t locks_immediate;
38
37
  uint64_t locks_waited;
39
38
} global_counters;
69
68
  uint64_t ha_savepoint_count;
70
69
  uint64_t ha_savepoint_rollback_count;
71
70
 
 
71
  /* KEY_CACHE parts. These are copies of the original */
 
72
  uint64_t key_blocks_changed;
 
73
  uint64_t key_blocks_used;
 
74
  uint64_t key_cache_r_requests;
 
75
  uint64_t key_cache_read;
 
76
  uint64_t key_cache_w_requests;
 
77
  uint64_t key_cache_write;
 
78
  /* END OF KEY_CACHE parts */
 
79
 
72
80
  uint64_t select_full_join_count;
73
81
  uint64_t select_full_range_join_count;
74
82
  uint64_t select_range_count;