[Groonga-mysql-commit] mroonga/mroonga at 90e9555 [master] Fix border value bug

Back to archive index

Kouhei Sutou null+****@clear*****
Thu May 16 11:43:38 JST 2013


Kouhei Sutou	2013-05-16 11:43:38 +0900 (Thu, 16 May 2013)

  New Revision: 90e9555dd23da89fadd65c72a94e4a28f6c6bc1e
  https://github.com/mroonga/mroonga/commit/90e9555dd23da89fadd65c72a94e4a28f6c6bc1e

  Message:
    Fix border value bug

  Modified files:
    ha_mroonga.cpp

  Modified: ha_mroonga.cpp (+1 -1)
===================================================================
--- ha_mroonga.cpp    2013-05-16 11:30:37 +0900 (d1ae0f4)
+++ ha_mroonga.cpp    2013-05-16 11:43:38 +0900 (a0135ae)
@@ -7756,7 +7756,7 @@ bool ha_mroonga::generic_ft_init_ext_parse_pragma_w(struct st_mrn_ft_info *info,
     }
 
     int section = 0;
-    if ('0' <= keyword[0] && keyword[0] <= ('0' + n_source_ids)) {
+    if ('0' <= keyword[0] && keyword[0] < ('0' + n_source_ids)) {
       section = keyword[0] - '0';
     } else {
       break;
-------------- next part --------------
HTML����������������������������...
Descargar 



More information about the Groonga-mysql-commit mailing list
Back to archive index