Kouhei Sutou
null+****@clear*****
Wed May 13 11:36:23 JST 2015
Kouhei Sutou 2015-05-13 11:36:23 +0900 (Wed, 13 May 2015) New Revision: 1e5b71d0cec0394302ad4731ccd21e8f72c4a101 https://github.com/groonga/groonga/commit/1e5b71d0cec0394302ad4731ccd21e8f72c4a101 Message: Fix build error Modified files: lib/proc.c Modified: lib/proc.c (+4 -2) =================================================================== --- lib/proc.c 2015-05-13 11:08:31 +0900 (249dcd1) +++ lib/proc.c 2015-05-13 11:36:23 +0900 (f685fb4) @@ -6296,9 +6296,11 @@ selector_in_values_sequential_search(grn_ctx *ctx, /* * Same as: - * ((n_existing_record / n_indexed_records) > too_many_index_match_ratio) + * ((n_existing_record / n_indexed_records) > + * grn_in_values_too_many_index_match_ratio) */ - if (n_existing_records > (n_indexed_records * too_many_index_match_ratio)) { + if (n_existing_records > + (n_indexed_records * grn_in_values_too_many_index_match_ratio)) { grn_obj_unlink(ctx, &value_ids); grn_obj_unlink(ctx, source); return GRN_FALSE; -------------- next part -------------- HTML����������������������������...Download