Navigation Menu

Skip to content

Commit

Permalink
Use same order in sql/handler.h
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 10, 2018
1 parent 05651b1 commit 222a3d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.hpp
Expand Up @@ -654,6 +654,7 @@ class ha_mroonga: public handler
uint child_key_name_len) mrn_override;
void change_table_ptr(TABLE *table_arg, TABLE_SHARE *share_arg) mrn_override;
double scan_time() mrn_override;
double read_time(uint index, uint ranges, ha_rows rows) mrn_override;
#ifdef MRN_HANDLER_HAVE_TABLE_CACHE_TYPE
uint8 table_cache_type();
#endif
Expand Down Expand Up @@ -691,7 +692,6 @@ class ha_mroonga: public handler
dd::Table *table_def
#endif
) mrn_override;
double read_time(uint index, uint ranges, ha_rows rows);
#ifdef MRN_HANDLER_HAVE_KEYS_TO_USE_FOR_SCANNING
const key_map *keys_to_use_for_scanning();
#endif
Expand Down Expand Up @@ -1323,6 +1323,8 @@ class ha_mroonga: public handler
void storage_change_table_ptr(TABLE *table_arg, TABLE_SHARE *share_arg);
double wrapper_scan_time();
double storage_scan_time();
double wrapper_read_time(uint index, uint ranges, ha_rows rows);
double storage_read_time(uint index, uint ranges, ha_rows rows);
#ifdef MRN_HANDLER_HAVE_TABLE_CACHE_TYPE
uint8 wrapper_table_cache_type();
uint8 storage_table_cache_type();
Expand Down Expand Up @@ -1392,8 +1394,6 @@ class ha_mroonga: public handler
#endif
);
int storage_truncate_index();
double wrapper_read_time(uint index, uint ranges, ha_rows rows);
double storage_read_time(uint index, uint ranges, ha_rows rows);
#ifdef MRN_HANDLER_HAVE_KEYS_TO_USE_FOR_SCANNING
const key_map *wrapper_keys_to_use_for_scanning();
const key_map *storage_keys_to_use_for_scanning();
Expand Down

0 comments on commit 222a3d8

Please sign in to comment.