/* update the time of the last modification (in handler::update_time) */
#define HA_STATUS_TIME           4
/*
  update the 'constant' part of the info:
  handler::max_data_file_length, max_index_file_length, create_time
  sortkey, ref_length, block_size, data_file_name, index_file_name.
  handler::table->s->keys_in_use, keys_for_keyread, rec_per_key
*/
#define HA_STATUS_CONST          8
/*
  update the 'variable' part of the info:
  handler::records, deleted, data_file_length, index_file_length,
  check_time, mean_rec_length
*/
#define HA_STATUS_VARIABLE      16
/*
  get the information about the key that caused last duplicate value error
  update handler::errkey and handler::dupp_ref
  see handler::get_dup_key()
*/
#define HA_STATUS_ERRKEY        32
/*
  update handler::auto_increment_value
*/
#define HA_STATUS_AUTO          64

 

相关文章:

  • 2022-12-23
  • 2021-06-13
  • 2021-12-28
  • 2022-12-23
  • 2021-12-08
  • 2022-12-23
  • 2022-02-03
  • 2021-07-10
猜你喜欢
  • 2022-02-05
  • 2022-12-23
  • 2021-08-27
  • 2021-09-16
  • 2022-02-18
相关资源
相似解决方案