Kouhei Sutou
null+****@clear*****
Thu Oct 4 10:37:20 JST 2012
Kouhei Sutou 2012-02-14 15:28:11 +0900 (Tue, 14 Feb 2012) New Revision: e61168207e948dc54f65ce5204bb12b7a3dfd547 https://github.com/mroonga/mroonga/commit/e61168207e948dc54f65ce5204bb12b7a3dfd547 Log: mrn_ -> generic_. Modified files: ha_mroonga.cc ha_mroonga.h Modified: ha_mroonga.cc (+3 -3) =================================================================== --- ha_mroonga.cc 2012-02-14 15:22:18 +0900 (d40af56) +++ ha_mroonga.cc 2012-02-14 15:28:11 +0900 (6ca380f) @@ -3966,7 +3966,7 @@ void ha_mroonga::position(const uchar *record) DBUG_VOID_RETURN; } -int ha_mroonga::mrn_extra(enum ha_extra_function operation) +int ha_mroonga::generic_extra(enum ha_extra_function operation) { MRN_DBUG_ENTER_METHOD(); switch (operation) { @@ -4021,7 +4021,7 @@ int ha_mroonga::extra(enum ha_extra_function operation) if ((error = storage_extra(operation))) DBUG_RETURN(error); } - error = mrn_extra(operation); + error = generic_extra(operation); DBUG_RETURN(error); } @@ -4057,7 +4057,7 @@ int ha_mroonga::extra_opt(enum ha_extra_function operation, ulong cache_size) if ((error = storage_extra_opt(operation, cache_size))) DBUG_RETURN(error); } - error = mrn_extra(operation); + error = generic_extra(operation); DBUG_RETURN(error); } Modified: ha_mroonga.h (+1 -1) =================================================================== --- ha_mroonga.h 2012-02-14 15:22:18 +0900 (1618737) +++ ha_mroonga.h 2012-02-14 15:28:11 +0900 (b5f628f) @@ -537,7 +537,7 @@ private: void wrapper_overwrite_index_bits(); int wrapper_close(); int storage_close(); - int mrn_extra(enum ha_extra_function operation); + int generic_extra(enum ha_extra_function operation); int wrapper_extra(enum ha_extra_function operation); int storage_extra(enum ha_extra_function operation); int wrapper_extra_opt(enum ha_extra_function operation, ulong cache_size); -------------- next part -------------- HTML����������������������������...Download