~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/ha_statistics.h

  • Committer: Brian Aker
  • Date: 2009-05-21 00:57:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1032.
  • Revision ID: brian@gaz-20090521005705-rpq4hzhy761d3wbj
Straighten out structures (remove some some dead bits).

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  ha_rows records;
45
45
  ha_rows deleted;                      /* Deleted records */
46
46
  uint32_t mean_rec_length;             /* physical reclength */
 
47
  uint32_t block_size;                  /* index block size */
47
48
  time_t create_time;                   /* When table was created */
48
49
  time_t check_time;
49
50
  time_t update_time;
50
 
  uint32_t block_size;                  /* index block size */
51
51
 
52
52
  ha_statistics():
53
53
    data_file_length(0), max_data_file_length(0),
54
54
    index_file_length(0), delete_length(0), auto_increment_value(0),
55
 
    records(0), deleted(0), mean_rec_length(0), create_time(0),
56
 
    check_time(0), update_time(0), block_size(0)
 
55
    records(0), deleted(0), mean_rec_length(0), block_size(0),
 
56
    create_time(0), check_time(0), update_time(0)
57
57
  {}
58
58
};
59
59