Navigation Menu

Skip to content

Commit

Permalink
Add missing mrn_override
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 10, 2018
1 parent 55889d5 commit 0c203a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.hpp
Expand Up @@ -696,7 +696,7 @@ class ha_mroonga: public handler
#ifdef MRN_HANDLER_HAVE_KEYS_TO_USE_FOR_SCANNING
const key_map *keys_to_use_for_scanning();
#endif
ha_rows estimate_rows_upper_bound();
ha_rows estimate_rows_upper_bound() mrn_override;
#ifdef MRN_HANDLER_HAVE_GET_DEFAULT_INDEX_ALGORITHM
enum ha_key_alg get_default_index_algorithm() const mrn_override;
#endif
Expand Down Expand Up @@ -762,9 +762,9 @@ class ha_mroonga: public handler

protected:
#ifdef MRN_HANDLER_RECORDS_RETURN_ERROR
int records(ha_rows *num_rows);
int records(ha_rows *num_rows) mrn_override;
#else
ha_rows records();
ha_rows records() mrn_override;
#endif
#ifdef MRN_HANDLER_HAVE_HA_RND_NEXT
int rnd_next(uchar *buf);
Expand Down

0 comments on commit 0c203a8

Please sign in to comment.