~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2009-07-11 05:59:19 UTC
  • mfrom: (1089.1.9 merge)
  • Revision ID: brian@gaz-20090711055919-m4px3crrdgta5lie
Collection of patches from new-cleanup (includes asserts for field in debug)

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  void reset() { no_2pc= false; modified_non_trans_table= false; }
77
77
};
78
78
 
79
 
typedef struct {
80
 
  uint64_t data_file_length;
81
 
  uint64_t max_data_file_length;
82
 
  uint64_t index_file_length;
83
 
  uint64_t delete_length;
84
 
  ha_rows records;
85
 
  uint32_t mean_rec_length;
86
 
  time_t create_time;
87
 
  time_t check_time;
88
 
  time_t update_time;
89
 
  uint64_t check_sum;
90
 
} PARTITION_INFO;
91
 
 
92
79
typedef struct st_ha_create_information
93
80
{
94
81
  const CHARSET_INFO *table_charset, *default_table_charset;