rroonga 7.1.1-x86-mingw32 → 9.0.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (980) hide show
  1. checksums.yaml +5 -5
  2. data/Rakefile +3 -3
  3. data/doc/text/news.md +22 -0
  4. data/ext/groonga/extconf.rb +29 -26
  5. data/ext/groonga/rb-grn.h +3 -3
  6. data/lib/2.2/groonga.so +0 -0
  7. data/lib/2.3/groonga.so +0 -0
  8. data/lib/2.4/groonga.so +0 -0
  9. data/lib/2.5/groonga.so +0 -0
  10. data/lib/groonga/expression-builder.rb +1 -1
  11. data/lib/groonga/schema.rb +13 -0
  12. data/rroonga-build.rb +4 -11
  13. data/test/test-expression-builder.rb +8 -0
  14. data/vendor/local/bin/cv2pdb.exe +0 -0
  15. data/vendor/local/bin/generate-pdb.bat +38 -36
  16. data/vendor/local/bin/grndb.exe +0 -0
  17. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  18. data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
  19. data/vendor/local/bin/groonga.exe +0 -0
  20. data/vendor/local/bin/libgroonga-0.dll +0 -0
  21. data/vendor/local/bin/libmecab-2.dll +0 -0
  22. data/vendor/local/bin/libmsgpackc.dll +0 -0
  23. data/vendor/local/bin/libonigmo-6.dll +0 -0
  24. data/vendor/local/bin/libpcre-1.dll +0 -0
  25. data/vendor/local/bin/libpcrecpp-0.dll +0 -0
  26. data/vendor/local/bin/libpcreposix-0.dll +0 -0
  27. data/vendor/local/bin/lz4.exe +0 -0
  28. data/vendor/local/bin/lz4c.exe +0 -0
  29. data/vendor/local/bin/{lz4cat → lz4cat.exe} +0 -0
  30. data/vendor/local/bin/mecab.exe +0 -0
  31. data/vendor/local/bin/pcre-config +1 -1
  32. data/vendor/local/bin/pcregrep.exe +0 -0
  33. data/vendor/local/bin/pcretest.exe +0 -0
  34. data/vendor/local/bin/unlz4.exe +0 -0
  35. data/vendor/local/bin/zlib1.dll +0 -0
  36. data/vendor/local/include/groonga/groonga.h +16 -1
  37. data/vendor/local/include/groonga/groonga/accessor.h +5 -1
  38. data/vendor/local/include/groonga/groonga/column.h +4 -0
  39. data/vendor/local/include/groonga/groonga/db.h +3 -1
  40. data/vendor/local/include/groonga/groonga/expr.h +5 -0
  41. data/vendor/local/include/groonga/groonga/groonga.h +124 -171
  42. data/vendor/local/include/groonga/groonga/highlighter.h +57 -0
  43. data/vendor/local/include/groonga/groonga/ii.h +2 -0
  44. data/vendor/local/include/groonga/groonga/index_column.h +31 -0
  45. data/vendor/local/include/groonga/groonga/memory.h +29 -0
  46. data/vendor/local/include/groonga/groonga/msgpack.h +50 -0
  47. data/vendor/local/include/groonga/groonga/obj.h +22 -1
  48. data/vendor/local/include/groonga/groonga/option.h +61 -0
  49. data/vendor/local/include/groonga/groonga/output.h +57 -2
  50. data/vendor/local/include/groonga/groonga/output_columns.h +38 -0
  51. data/vendor/local/include/groonga/groonga/plugin.h +5 -0
  52. data/vendor/local/include/groonga/groonga/raw_string.h +60 -0
  53. data/vendor/local/include/groonga/groonga/string.h +113 -0
  54. data/vendor/local/include/groonga/groonga/table.h +89 -1
  55. data/vendor/local/include/groonga/groonga/thread.h +15 -0
  56. data/vendor/local/include/groonga/groonga/time.h +1 -0
  57. data/vendor/local/include/groonga/groonga/token.h +60 -10
  58. data/vendor/local/include/groonga/groonga/token_cursor.h +59 -0
  59. data/vendor/local/include/groonga/groonga/token_filter.h +24 -0
  60. data/vendor/local/include/groonga/groonga/token_metadata.h +49 -0
  61. data/vendor/local/include/groonga/groonga/tokenizer.h +99 -25
  62. data/vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h +50 -0
  63. data/vendor/local/include/groonga/groonga/vector.h +80 -0
  64. data/vendor/local/include/groonga/groonga/version.h +32 -0
  65. data/vendor/local/include/groonga/groonga/window_function.h +18 -8
  66. data/vendor/local/include/groonga/groonga/window_function_executor.h +68 -0
  67. data/vendor/local/include/lz4.h +504 -212
  68. data/vendor/local/include/lz4frame.h +433 -153
  69. data/vendor/local/include/lz4frame_static.h +47 -0
  70. data/vendor/local/include/lz4hc.h +281 -108
  71. data/vendor/local/include/msgpack.hpp +4 -0
  72. data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +1 -0
  73. data/vendor/local/include/msgpack/adaptor/adaptor_base_decl.hpp +1 -0
  74. data/vendor/local/include/msgpack/adaptor/array_ref_decl.hpp +1 -0
  75. data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant_decl.hpp +1 -0
  76. data/vendor/local/include/msgpack/adaptor/boost/string_view.hpp +15 -0
  77. data/vendor/local/include/msgpack/adaptor/check_container_size_decl.hpp +1 -0
  78. data/vendor/local/include/msgpack/adaptor/cpp17/optional.hpp +16 -0
  79. data/vendor/local/include/msgpack/adaptor/cpp17/string_view.hpp +16 -0
  80. data/vendor/local/include/msgpack/adaptor/define_decl.hpp +2 -0
  81. data/vendor/local/include/msgpack/adaptor/ext_decl.hpp +1 -0
  82. data/vendor/local/include/msgpack/adaptor/fixint_decl.hpp +1 -0
  83. data/vendor/local/include/msgpack/adaptor/int_decl.hpp +1 -0
  84. data/vendor/local/include/msgpack/adaptor/map_decl.hpp +1 -0
  85. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_decl.hpp +1 -0
  86. data/vendor/local/include/msgpack/adaptor/nil_decl.hpp +1 -0
  87. data/vendor/local/include/msgpack/adaptor/raw_decl.hpp +1 -0
  88. data/vendor/local/include/msgpack/adaptor/size_equal_only_decl.hpp +1 -0
  89. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +2 -2
  90. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +2 -2
  91. data/vendor/local/include/msgpack/adaptor/v4raw_decl.hpp +1 -0
  92. data/vendor/local/include/msgpack/cpp_config_decl.hpp +1 -0
  93. data/vendor/local/include/msgpack/create_object_visitor.hpp +17 -0
  94. data/vendor/local/include/msgpack/create_object_visitor_decl.hpp +16 -0
  95. data/vendor/local/include/msgpack/fbuffer.h +1 -1
  96. data/vendor/local/include/msgpack/fbuffer_decl.hpp +1 -0
  97. data/vendor/local/include/msgpack/gcc_atomic.hpp +0 -2
  98. data/vendor/local/include/msgpack/iterator_decl.hpp +2 -1
  99. data/vendor/local/include/msgpack/meta_decl.hpp +1 -0
  100. data/vendor/local/include/msgpack/null_visitor.hpp +17 -0
  101. data/vendor/local/include/msgpack/null_visitor_decl.hpp +16 -0
  102. data/vendor/local/include/msgpack/object.h +5 -0
  103. data/vendor/local/include/msgpack/object_decl.hpp +1 -0
  104. data/vendor/local/include/msgpack/object_fwd.hpp +1 -0
  105. data/vendor/local/include/msgpack/object_fwd_decl.hpp +1 -0
  106. data/vendor/local/include/msgpack/pack.h +1 -0
  107. data/vendor/local/include/msgpack/pack_decl.hpp +1 -0
  108. data/vendor/local/include/msgpack/parse.hpp +18 -0
  109. data/vendor/local/include/msgpack/parse_decl.hpp +16 -0
  110. data/vendor/local/include/msgpack/parse_return.hpp +17 -0
  111. data/vendor/local/include/msgpack/sbuffer_decl.hpp +1 -0
  112. data/vendor/local/include/msgpack/sysdep.h +34 -26
  113. data/vendor/local/include/msgpack/type.hpp +9 -0
  114. data/vendor/local/include/msgpack/unpack.h +12 -1
  115. data/vendor/local/include/msgpack/unpack.hpp +1 -0
  116. data/vendor/local/include/msgpack/unpack_decl.hpp +1 -0
  117. data/vendor/local/include/msgpack/unpack_exception.hpp +15 -0
  118. data/vendor/local/include/msgpack/unpack_template.h +22 -30
  119. data/vendor/local/include/msgpack/v1/adaptor/array_ref.hpp +6 -6
  120. data/vendor/local/include/msgpack/v1/adaptor/boost/fusion.hpp +49 -6
  121. data/vendor/local/include/msgpack/v1/adaptor/boost/msgpack_variant.hpp +6 -4
  122. data/vendor/local/include/msgpack/v1/adaptor/boost/string_view.hpp +87 -0
  123. data/vendor/local/include/msgpack/v1/adaptor/carray.hpp +11 -11
  124. data/vendor/local/include/msgpack/v1/adaptor/char_ptr.hpp +1 -1
  125. data/vendor/local/include/msgpack/v1/adaptor/cpp11/array.hpp +1 -1
  126. data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_char.hpp +8 -1
  127. data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp +8 -1
  128. data/vendor/local/include/msgpack/v1/adaptor/cpp11/forward_list.hpp +1 -1
  129. data/vendor/local/include/msgpack/v1/adaptor/cpp11/tuple.hpp +2 -2
  130. data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_map.hpp +4 -4
  131. data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_set.hpp +2 -2
  132. data/vendor/local/include/msgpack/v1/adaptor/cpp17/optional.hpp +90 -0
  133. data/vendor/local/include/msgpack/v1/adaptor/cpp17/string_view.hpp +86 -0
  134. data/vendor/local/include/msgpack/v1/adaptor/deque.hpp +1 -1
  135. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_array.hpp +1088 -32
  136. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_map.hpp +32 -16
  137. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp +32 -32
  138. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_convert_helper.hpp +45 -0
  139. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_array.hpp +4 -3
  140. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_map.hpp +4 -2
  141. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp +2 -2
  142. data/vendor/local/include/msgpack/v1/adaptor/ext.hpp +1 -1
  143. data/vendor/local/include/msgpack/v1/adaptor/fixint.hpp +40 -24
  144. data/vendor/local/include/msgpack/v1/adaptor/float.hpp +4 -4
  145. data/vendor/local/include/msgpack/v1/adaptor/int.hpp +55 -33
  146. data/vendor/local/include/msgpack/v1/adaptor/list.hpp +1 -1
  147. data/vendor/local/include/msgpack/v1/adaptor/map.hpp +10 -10
  148. data/vendor/local/include/msgpack/v1/adaptor/pair.hpp +2 -2
  149. data/vendor/local/include/msgpack/v1/adaptor/set.hpp +2 -2
  150. data/vendor/local/include/msgpack/v1/adaptor/string.hpp +1 -1
  151. data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_map.hpp +2 -2
  152. data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_set.hpp +2 -2
  153. data/vendor/local/include/msgpack/v1/adaptor/vector.hpp +5 -5
  154. data/vendor/local/include/msgpack/v1/adaptor/vector_bool.hpp +1 -1
  155. data/vendor/local/include/msgpack/v1/adaptor/vector_char.hpp +9 -9
  156. data/vendor/local/include/msgpack/v1/adaptor/vector_unsigned_char.hpp +9 -9
  157. data/vendor/local/include/msgpack/v1/cpp_config.hpp +6 -0
  158. data/vendor/local/include/msgpack/v1/cpp_config_decl.hpp +6 -0
  159. data/vendor/local/include/msgpack/v1/detail/cpp03_zone.hpp +41 -34
  160. data/vendor/local/include/msgpack/v1/detail/cpp03_zone_decl.hpp +8 -0
  161. data/vendor/local/include/msgpack/v1/detail/cpp11_zone.hpp +25 -19
  162. data/vendor/local/include/msgpack/v1/detail/cpp11_zone_decl.hpp +8 -0
  163. data/vendor/local/include/msgpack/v1/meta.hpp +6 -0
  164. data/vendor/local/include/msgpack/v1/meta_decl.hpp +5 -0
  165. data/vendor/local/include/msgpack/v1/object.hpp +768 -393
  166. data/vendor/local/include/msgpack/v1/object_decl.hpp +11 -1
  167. data/vendor/local/include/msgpack/v1/object_fwd.hpp +4 -1
  168. data/vendor/local/include/msgpack/v1/object_fwd_decl.hpp +3 -1
  169. data/vendor/local/include/msgpack/v1/parse_return.hpp +36 -0
  170. data/vendor/local/include/msgpack/v1/unpack.hpp +39 -120
  171. data/vendor/local/include/msgpack/v1/unpack_decl.hpp +2 -9
  172. data/vendor/local/include/msgpack/v1/unpack_exception.hpp +122 -0
  173. data/vendor/local/include/msgpack/v1/vrefbuffer.hpp +2 -2
  174. data/vendor/local/include/msgpack/v2/create_object_visitor.hpp +250 -0
  175. data/vendor/local/include/msgpack/v2/create_object_visitor_decl.hpp +33 -0
  176. data/vendor/local/include/msgpack/v2/meta_decl.hpp +4 -0
  177. data/vendor/local/include/msgpack/v2/null_visitor.hpp +96 -0
  178. data/vendor/local/include/msgpack/v2/null_visitor_decl.hpp +29 -0
  179. data/vendor/local/include/msgpack/v2/object_decl.hpp +4 -0
  180. data/vendor/local/include/msgpack/v2/object_fwd.hpp +1 -1
  181. data/vendor/local/include/msgpack/v2/object_fwd_decl.hpp +2 -0
  182. data/vendor/local/include/msgpack/v2/pack_decl.hpp +1 -0
  183. data/vendor/local/include/msgpack/v2/parse.hpp +1072 -0
  184. data/vendor/local/include/msgpack/v2/parse_decl.hpp +79 -0
  185. data/vendor/local/include/msgpack/v2/parse_return.hpp +37 -0
  186. data/vendor/local/include/msgpack/v2/unpack.hpp +21 -1298
  187. data/vendor/local/include/msgpack/v2/unpack_decl.hpp +9 -45
  188. data/vendor/local/include/msgpack/v2/x3_parse.hpp +875 -0
  189. data/vendor/local/include/msgpack/v2/x3_parse_decl.hpp +36 -0
  190. data/vendor/local/include/msgpack/v2/x3_unpack.hpp +120 -0
  191. data/vendor/local/include/msgpack/v2/x3_unpack_decl.hpp +71 -0
  192. data/vendor/local/include/msgpack/v3/adaptor/adaptor_base.hpp +58 -0
  193. data/vendor/local/include/msgpack/v3/adaptor/adaptor_base_decl.hpp +52 -0
  194. data/vendor/local/include/msgpack/v3/adaptor/array_ref_decl.hpp +36 -0
  195. data/vendor/local/include/msgpack/v3/adaptor/boost/msgpack_variant_decl.hpp +42 -0
  196. data/vendor/local/include/msgpack/v3/adaptor/check_container_size_decl.hpp +39 -0
  197. data/vendor/local/include/msgpack/v3/adaptor/define_decl.hpp +23 -0
  198. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_define_array_decl.hpp +31 -0
  199. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_define_map_decl.hpp +31 -0
  200. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +43 -0
  201. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_define_array_decl.hpp +32 -0
  202. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_define_map_decl.hpp +31 -0
  203. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +59 -0
  204. data/vendor/local/include/msgpack/v3/adaptor/ext_decl.hpp +34 -0
  205. data/vendor/local/include/msgpack/v3/adaptor/fixint_decl.hpp +43 -0
  206. data/vendor/local/include/msgpack/v3/adaptor/int_decl.hpp +54 -0
  207. data/vendor/local/include/msgpack/v3/adaptor/map_decl.hpp +33 -0
  208. data/vendor/local/include/msgpack/v3/adaptor/msgpack_tuple_decl.hpp +21 -0
  209. data/vendor/local/include/msgpack/v3/adaptor/nil_decl.hpp +42 -0
  210. data/vendor/local/include/msgpack/v3/adaptor/raw_decl.hpp +33 -0
  211. data/vendor/local/include/msgpack/v3/adaptor/size_equal_only_decl.hpp +35 -0
  212. data/vendor/local/include/msgpack/v3/adaptor/v4raw_decl.hpp +34 -0
  213. data/vendor/local/include/msgpack/v3/cpp_config_decl.hpp +84 -0
  214. data/vendor/local/include/msgpack/v3/create_object_visitor_decl.hpp +33 -0
  215. data/vendor/local/include/msgpack/v3/detail/cpp03_zone_decl.hpp +31 -0
  216. data/vendor/local/include/msgpack/v3/detail/cpp11_zone_decl.hpp +31 -0
  217. data/vendor/local/include/msgpack/v3/fbuffer_decl.hpp +32 -0
  218. data/vendor/local/include/msgpack/v3/iterator_decl.hpp +33 -0
  219. data/vendor/local/include/msgpack/v3/meta_decl.hpp +50 -0
  220. data/vendor/local/include/msgpack/v3/null_visitor_decl.hpp +29 -0
  221. data/vendor/local/include/msgpack/v3/object_decl.hpp +53 -0
  222. data/vendor/local/include/msgpack/v3/object_fwd.hpp +70 -0
  223. data/vendor/local/include/msgpack/v3/object_fwd_decl.hpp +75 -0
  224. data/vendor/local/include/msgpack/v3/pack_decl.hpp +55 -0
  225. data/vendor/local/include/msgpack/v3/parse.hpp +677 -0
  226. data/vendor/local/include/msgpack/v3/parse_decl.hpp +49 -0
  227. data/vendor/local/include/msgpack/v3/parse_return.hpp +35 -0
  228. data/vendor/local/include/msgpack/v3/sbuffer_decl.hpp +33 -0
  229. data/vendor/local/include/msgpack/v3/unpack.hpp +192 -0
  230. data/vendor/local/include/msgpack/v3/unpack_decl.hpp +304 -0
  231. data/vendor/local/include/msgpack/v3/vrefbuffer_decl.hpp +29 -0
  232. data/vendor/local/include/msgpack/v3/x3_parse_decl.hpp +34 -0
  233. data/vendor/local/include/msgpack/v3/x3_unpack.hpp +97 -0
  234. data/vendor/local/include/msgpack/v3/x3_unpack_decl.hpp +65 -0
  235. data/vendor/local/include/msgpack/v3/zbuffer_decl.hpp +29 -0
  236. data/vendor/local/include/msgpack/v3/zone_decl.hpp +21 -0
  237. data/vendor/local/include/msgpack/version_master.h +2 -2
  238. data/vendor/local/include/msgpack/versioning.hpp +5 -3
  239. data/vendor/local/include/msgpack/vrefbuffer.h +1 -2
  240. data/vendor/local/include/msgpack/vrefbuffer_decl.hpp +1 -0
  241. data/vendor/local/include/msgpack/x3_parse.hpp +15 -0
  242. data/vendor/local/include/msgpack/x3_parse_decl.hpp +16 -0
  243. data/vendor/local/include/msgpack/x3_unpack.hpp +16 -0
  244. data/vendor/local/include/msgpack/x3_unpack_decl.hpp +16 -0
  245. data/vendor/local/include/msgpack/zbuffer_decl.hpp +1 -0
  246. data/vendor/local/include/msgpack/zone_decl.hpp +1 -0
  247. data/vendor/local/include/pcre.h +6 -6
  248. data/vendor/local/lib/cmake/msgpack/msgpack-config-version.cmake +46 -0
  249. data/vendor/local/lib/cmake/msgpack/msgpack-config.cmake +47 -0
  250. data/vendor/local/lib/cmake/msgpack/msgpack-targets-noconfig.cmake +29 -0
  251. data/vendor/local/lib/cmake/msgpack/msgpack-targets.cmake +101 -0
  252. data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
  253. data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
  254. data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
  255. data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
  256. data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
  257. data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
  258. data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
  259. data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
  260. data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
  261. data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
  262. data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
  263. data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
  264. data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
  265. data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
  266. data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
  267. data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
  268. data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
  269. data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
  270. data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
  271. data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
  272. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  273. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  274. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  275. data/vendor/local/lib/groonga/plugins/functions/vector.la +1 -1
  276. data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
  277. data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
  278. data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -0
  279. data/vendor/local/lib/groonga/plugins/normalizers/mysql.la +2 -2
  280. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  281. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  282. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  283. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
  284. data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +150 -19
  285. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +123 -65
  286. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +528 -113
  287. data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +142 -40
  288. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  289. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  290. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  291. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
  292. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  293. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  294. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  295. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +1 -1
  296. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  297. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  298. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  299. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +1 -1
  300. data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +1 -1
  301. data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +64 -35
  302. data/vendor/local/lib/groonga/scripts/ruby/expression.rb +3 -1
  303. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +15 -21
  304. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +274 -0
  305. data/vendor/local/lib/groonga/scripts/ruby/expression_tree.rb +8 -2
  306. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/assign.rb +22 -0
  307. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/assign_binary_operation.rb +24 -0
  308. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +206 -8
  309. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/constant.rb +16 -1
  310. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/function_call.rb +30 -1
  311. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/logical_operation.rb +6 -0
  312. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/member.rb +18 -0
  313. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/null.rb +17 -0
  314. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/reference.rb +18 -0
  315. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/table.rb +14 -0
  316. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/unary_operation.rb +26 -0
  317. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/variable.rb +4 -0
  318. data/vendor/local/lib/groonga/scripts/ruby/expression_tree_builder.rb +78 -8
  319. data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +10 -0
  320. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +2 -0
  321. data/vendor/local/lib/groonga/scripts/ruby/locale_output.rb +28 -0
  322. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +36 -4
  323. data/vendor/local/lib/groonga/scripts/ruby/record.rb +1 -1
  324. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +0 -3
  325. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +46 -5
  326. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data_size_estimator.rb +5 -136
  327. data/vendor/local/lib/groonga/scripts/ruby/table.rb +2 -2
  328. data/vendor/local/lib/libgroonga.a +0 -0
  329. data/vendor/local/lib/libgroonga.dll.a +0 -0
  330. data/vendor/local/lib/libgroonga.la +1 -1
  331. data/vendor/local/lib/liblz4.a +0 -0
  332. data/vendor/local/lib/liblz4.dll +0 -0
  333. data/vendor/local/lib/liblz4.dll.1 +0 -0
  334. data/vendor/local/lib/{liblz4.dll.1.5.0 → liblz4.dll.1.8.2} +0 -0
  335. data/vendor/local/lib/libmecab.dll.a +0 -0
  336. data/vendor/local/lib/libmsgpackc.a +0 -0
  337. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  338. data/vendor/local/lib/libonigmo.a +0 -0
  339. data/vendor/local/lib/libonigmo.dll.a +0 -0
  340. data/vendor/local/lib/libpcre.a +0 -0
  341. data/vendor/local/lib/libpcre.dll.a +0 -0
  342. data/vendor/local/lib/libpcre.la +2 -2
  343. data/vendor/local/lib/libpcrecpp.dll.a +0 -0
  344. data/vendor/local/lib/libpcrecpp.la +1 -1
  345. data/vendor/local/lib/libpcreposix.a +0 -0
  346. data/vendor/local/lib/libpcreposix.dll.a +0 -0
  347. data/vendor/local/lib/libpcreposix.la +2 -2
  348. data/vendor/local/lib/libz.dll.a +0 -0
  349. data/vendor/local/lib/pkgconfig/groonga-normalizer-mysql.pc +1 -1
  350. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  351. data/vendor/local/lib/pkgconfig/liblz4.pc +3 -3
  352. data/vendor/local/lib/pkgconfig/libpcre.pc +1 -1
  353. data/vendor/local/lib/pkgconfig/libpcrecpp.pc +1 -1
  354. data/vendor/local/lib/pkgconfig/libpcreposix.pc +1 -1
  355. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  356. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  357. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  358. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  359. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  360. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  361. data/vendor/local/share/doc/groonga-normalizer-mysql/README.md +14 -22
  362. data/vendor/local/share/doc/groonga-normalizer-mysql/news.md +22 -2
  363. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  364. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +113 -4
  365. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +46 -19
  366. data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +10 -0
  367. data/vendor/local/share/doc/groonga/en/html/_static/{jquery-3.1.0.js → jquery-3.2.1.js} +474 -295
  368. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -4
  369. data/vendor/local/share/doc/groonga/en/html/_static/language_data.js +297 -0
  370. data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +4 -0
  371. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +69 -322
  372. data/vendor/local/share/doc/groonga/en/html/characteristic.html +16 -24
  373. data/vendor/local/share/doc/groonga/en/html/client.html +15 -23
  374. data/vendor/local/share/doc/groonga/en/html/community.html +30 -38
  375. data/vendor/local/share/doc/groonga/en/html/contribution.html +23 -31
  376. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +15 -23
  377. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +15 -23
  378. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +58 -66
  379. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +51 -56
  380. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +52 -56
  381. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +27 -35
  382. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +19 -27
  383. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +26 -34
  384. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +167 -167
  385. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +16 -24
  386. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +28 -36
  387. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +15 -23
  388. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +15 -23
  389. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +59 -67
  390. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +31 -39
  391. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +18 -26
  392. data/vendor/local/share/doc/groonga/en/html/development.html +15 -23
  393. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +38 -43
  394. data/vendor/local/share/doc/groonga/en/html/genindex.html +50 -28
  395. data/vendor/local/share/doc/groonga/en/html/index.html +248 -234
  396. data/vendor/local/share/doc/groonga/en/html/install.html +43 -47
  397. data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -51
  398. data/vendor/local/share/doc/groonga/en/html/install/debian.html +52 -131
  399. data/vendor/local/share/doc/groonga/en/html/install/docker.html +155 -0
  400. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +41 -49
  401. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +29 -37
  402. data/vendor/local/share/doc/groonga/en/html/install/others.html +142 -150
  403. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +30 -38
  404. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +43 -51
  405. data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -41
  406. data/vendor/local/share/doc/groonga/en/html/limitations.html +36 -42
  407. data/vendor/local/share/doc/groonga/en/html/news.html +1586 -598
  408. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +83 -83
  409. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +147 -155
  410. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +26 -34
  411. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +225 -233
  412. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +48 -56
  413. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +378 -386
  414. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +320 -328
  415. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +442 -448
  416. data/vendor/local/share/doc/groonga/en/html/news/5.x.html +742 -860
  417. data/vendor/local/share/doc/groonga/en/html/news/6.x.html +544 -621
  418. data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -40
  419. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  420. data/vendor/local/share/doc/groonga/en/html/reference.html +208 -198
  421. data/vendor/local/share/doc/groonga/en/html/reference/alias.html +85 -93
  422. data/vendor/local/share/doc/groonga/en/html/reference/api.html +50 -57
  423. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +62 -77
  424. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +117 -149
  425. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +140 -176
  426. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +43 -55
  427. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +48 -56
  428. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +194 -254
  429. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +106 -138
  430. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +62 -82
  431. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +117 -137
  432. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +74 -98
  433. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +79 -103
  434. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +40 -48
  435. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +57 -73
  436. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +75 -99
  437. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +495 -0
  438. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +52 -68
  439. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +291 -357
  440. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +69 -89
  441. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +47 -59
  442. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +226 -306
  443. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +120 -160
  444. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +80 -103
  445. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +46 -58
  446. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +40 -52
  447. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +52 -66
  448. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +98 -122
  449. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +40 -26
  450. data/vendor/local/share/doc/groonga/en/html/reference/column.html +16 -24
  451. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +16 -24
  452. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +30 -34
  453. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +16 -24
  454. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +92 -100
  455. data/vendor/local/share/doc/groonga/en/html/reference/command.html +76 -84
  456. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +26 -34
  457. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +64 -72
  458. data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +21 -29
  459. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -33
  460. data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +32 -40
  461. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +105 -113
  462. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -50
  463. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +85 -73
  464. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +31 -37
  465. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +131 -139
  466. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +370 -326
  467. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +115 -117
  468. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +38 -44
  469. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +47 -53
  470. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +40 -48
  471. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +42 -50
  472. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +41 -49
  473. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +37 -45
  474. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +71 -63
  475. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +31 -37
  476. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +49 -51
  477. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +64 -71
  478. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +335 -138
  479. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +233 -87
  480. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +45 -53
  481. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +42 -48
  482. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +43 -51
  483. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +58 -64
  484. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +33 -38
  485. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +31 -38
  486. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +295 -218
  487. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +56 -64
  488. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +532 -214
  489. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +797 -388
  490. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +35 -43
  491. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +188 -196
  492. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +83 -90
  493. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +41 -48
  494. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +41 -49
  495. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +401 -403
  496. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +253 -261
  497. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +60 -68
  498. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +36 -44
  499. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +35 -43
  500. data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +21 -29
  501. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +22 -30
  502. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +21 -29
  503. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +39 -47
  504. data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +47 -53
  505. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
  506. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -45
  507. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -45
  508. data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +330 -338
  509. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +1545 -1194
  510. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +57 -65
  511. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +83 -91
  512. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +119 -133
  513. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +30 -38
  514. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +165 -174
  515. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +50 -50
  516. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +104 -112
  517. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +42 -50
  518. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +49 -57
  519. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +46 -54
  520. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +110 -117
  521. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +41 -48
  522. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +40 -46
  523. data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +37 -45
  524. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -27
  525. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +134 -114
  526. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +25 -31
  527. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +66 -66
  528. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +174 -182
  529. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +25 -33
  530. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +27 -35
  531. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +191 -199
  532. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +32 -40
  533. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +189 -163
  534. data/vendor/local/share/doc/groonga/en/html/reference/function.html +59 -64
  535. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +71 -79
  536. data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +210 -0
  537. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +49 -55
  538. data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +38 -46
  539. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +133 -142
  540. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +67 -73
  541. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +56 -62
  542. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +80 -88
  543. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +70 -78
  544. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +56 -64
  545. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +87 -94
  546. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +54 -62
  547. data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +55 -63
  548. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -48
  549. data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +36 -44
  550. data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +74 -82
  551. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +152 -160
  552. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +45 -52
  553. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +76 -84
  554. data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +37 -45
  555. data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +39 -47
  556. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +76 -84
  557. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +37 -45
  558. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +278 -0
  559. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +37 -45
  560. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +36 -44
  561. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +36 -44
  562. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +36 -44
  563. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +36 -44
  564. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +37 -45
  565. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +368 -0
  566. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +40 -48
  567. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +54 -62
  568. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +40 -47
  569. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +44 -52
  570. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +307 -316
  571. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +486 -492
  572. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +44 -52
  573. data/vendor/local/share/doc/groonga/en/html/reference/log.html +128 -147
  574. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +43 -92
  575. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +179 -0
  576. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +897 -0
  577. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +162 -0
  578. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +26 -34
  579. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +48 -56
  580. data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +47 -55
  581. data/vendor/local/share/doc/groonga/en/html/reference/output.html +47 -55
  582. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -28
  583. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +93 -101
  584. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +228 -225
  585. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +59 -67
  586. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +50 -58
  587. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +57 -65
  588. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +76 -86
  589. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +43 -51
  590. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +159 -167
  591. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +93 -101
  592. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +85 -93
  593. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +88 -96
  594. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +142 -150
  595. data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +147 -0
  596. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +31 -223
  597. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +626 -0
  598. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +291 -0
  599. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +287 -0
  600. data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +259 -0
  601. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +42 -1455
  602. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +368 -0
  603. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +221 -0
  604. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +240 -0
  605. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +270 -0
  606. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +292 -0
  607. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +179 -0
  608. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +200 -0
  609. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +212 -0
  610. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +357 -0
  611. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +162 -0
  612. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +783 -0
  613. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +289 -0
  614. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +194 -0
  615. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +194 -0
  616. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +71 -79
  617. data/vendor/local/share/doc/groonga/en/html/reference/types.html +64 -72
  618. data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +29 -37
  619. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +38 -46
  620. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +38 -46
  621. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +38 -46
  622. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +38 -46
  623. data/vendor/local/share/doc/groonga/en/html/search.html +13 -24
  624. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  625. data/vendor/local/share/doc/groonga/en/html/server.html +15 -23
  626. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +27 -35
  627. data/vendor/local/share/doc/groonga/en/html/server/http.html +18 -26
  628. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +94 -102
  629. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +15 -23
  630. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +15 -23
  631. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +18 -26
  632. data/vendor/local/share/doc/groonga/en/html/server/package.html +101 -109
  633. data/vendor/local/share/doc/groonga/en/html/spec.html +19 -27
  634. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +207 -215
  635. data/vendor/local/share/doc/groonga/en/html/spec/search.html +39 -39
  636. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +15 -23
  637. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +46 -50
  638. data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +27 -35
  639. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +26 -31
  640. data/vendor/local/share/doc/groonga/en/html/tutorial.html +17 -25
  641. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +46 -54
  642. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +63 -71
  643. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +30 -38
  644. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +88 -97
  645. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +19 -27
  646. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +61 -69
  647. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +108 -116
  648. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +24 -32
  649. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +19 -27
  650. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +32 -40
  651. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +52 -60
  652. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  653. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +113 -4
  654. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +46 -19
  655. data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +10 -0
  656. data/vendor/local/share/doc/groonga/ja/html/_static/{jquery-3.1.0.js → jquery-3.2.1.js} +474 -295
  657. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -4
  658. data/vendor/local/share/doc/groonga/ja/html/_static/language_data.js +124 -0
  659. data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +4 -0
  660. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +70 -150
  661. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +15 -23
  662. data/vendor/local/share/doc/groonga/ja/html/client.html +15 -23
  663. data/vendor/local/share/doc/groonga/ja/html/community.html +29 -37
  664. data/vendor/local/share/doc/groonga/ja/html/contribution.html +23 -31
  665. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +15 -23
  666. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +15 -23
  667. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +50 -58
  668. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +43 -48
  669. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +47 -51
  670. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +26 -34
  671. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +18 -26
  672. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +23 -31
  673. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +162 -162
  674. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +16 -24
  675. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +26 -34
  676. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +15 -23
  677. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +15 -23
  678. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +50 -58
  679. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +28 -36
  680. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -25
  681. data/vendor/local/share/doc/groonga/ja/html/development.html +15 -23
  682. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +32 -37
  683. data/vendor/local/share/doc/groonga/ja/html/genindex.html +50 -28
  684. data/vendor/local/share/doc/groonga/ja/html/index.html +247 -233
  685. data/vendor/local/share/doc/groonga/ja/html/install.html +41 -45
  686. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -52
  687. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +52 -121
  688. data/vendor/local/share/doc/groonga/ja/html/install/docker.html +155 -0
  689. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +40 -48
  690. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +28 -36
  691. data/vendor/local/share/doc/groonga/ja/html/install/others.html +116 -124
  692. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +28 -36
  693. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +43 -51
  694. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -37
  695. data/vendor/local/share/doc/groonga/ja/html/limitations.html +30 -36
  696. data/vendor/local/share/doc/groonga/ja/html/news.html +1234 -384
  697. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +82 -82
  698. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +146 -154
  699. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +25 -33
  700. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +191 -199
  701. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +41 -49
  702. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +283 -291
  703. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +229 -237
  704. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +274 -280
  705. data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +475 -593
  706. data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +313 -390
  707. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +31 -39
  708. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  709. data/vendor/local/share/doc/groonga/ja/html/reference.html +208 -198
  710. data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +70 -78
  711. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +50 -57
  712. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +57 -72
  713. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +107 -139
  714. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +137 -173
  715. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +40 -52
  716. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +46 -54
  717. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +184 -244
  718. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +99 -131
  719. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +57 -77
  720. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +100 -120
  721. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +71 -95
  722. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +75 -99
  723. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +37 -45
  724. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +54 -70
  725. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +71 -95
  726. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +487 -0
  727. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +49 -65
  728. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +286 -352
  729. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +64 -84
  730. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +44 -56
  731. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +219 -299
  732. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +116 -156
  733. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +70 -93
  734. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +42 -54
  735. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +36 -48
  736. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -62
  737. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +94 -118
  738. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +39 -25
  739. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +15 -23
  740. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +15 -23
  741. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -32
  742. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +15 -23
  743. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +76 -84
  744. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +76 -84
  745. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +25 -33
  746. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +51 -59
  747. data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +20 -28
  748. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +21 -29
  749. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +27 -35
  750. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +101 -109
  751. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +39 -45
  752. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +84 -72
  753. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +30 -36
  754. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +104 -112
  755. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +271 -237
  756. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +100 -102
  757. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +37 -43
  758. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -47
  759. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +38 -46
  760. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +39 -47
  761. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +39 -47
  762. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +34 -42
  763. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +70 -62
  764. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -36
  765. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +42 -44
  766. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +59 -68
  767. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +300 -126
  768. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +212 -80
  769. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +42 -50
  770. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +40 -46
  771. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +41 -49
  772. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +57 -63
  773. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +32 -37
  774. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +30 -37
  775. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +246 -178
  776. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +51 -59
  777. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +479 -175
  778. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +718 -326
  779. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +34 -42
  780. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +145 -153
  781. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +78 -85
  782. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +40 -47
  783. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +36 -44
  784. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +360 -362
  785. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +221 -229
  786. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +47 -55
  787. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +32 -40
  788. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +33 -41
  789. data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +20 -28
  790. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +21 -29
  791. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +20 -28
  792. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +35 -43
  793. data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +42 -48
  794. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +57 -57
  795. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +36 -43
  796. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +36 -43
  797. data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +317 -325
  798. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +1246 -917
  799. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +50 -58
  800. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +77 -85
  801. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +109 -123
  802. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +29 -37
  803. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +131 -140
  804. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -49
  805. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +87 -95
  806. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +36 -44
  807. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +44 -52
  808. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +38 -46
  809. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +93 -100
  810. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +40 -47
  811. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +39 -45
  812. data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +36 -44
  813. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -27
  814. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +125 -107
  815. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +23 -29
  816. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +62 -62
  817. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +132 -140
  818. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +23 -31
  819. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +25 -33
  820. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +166 -174
  821. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +31 -39
  822. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +189 -165
  823. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +59 -64
  824. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +69 -77
  825. data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +208 -0
  826. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +48 -54
  827. data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +37 -45
  828. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +115 -124
  829. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +66 -72
  830. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +55 -61
  831. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +69 -77
  832. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +60 -68
  833. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +54 -62
  834. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +85 -93
  835. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +54 -62
  836. data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +54 -62
  837. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +39 -47
  838. data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +35 -43
  839. data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +67 -75
  840. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +130 -138
  841. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +44 -51
  842. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +61 -69
  843. data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +36 -44
  844. data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +38 -46
  845. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +63 -71
  846. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +36 -44
  847. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +276 -0
  848. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +36 -44
  849. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +35 -43
  850. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +35 -43
  851. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +35 -43
  852. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +35 -43
  853. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +36 -44
  854. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +353 -0
  855. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +39 -47
  856. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +52 -61
  857. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +38 -46
  858. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +38 -46
  859. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +200 -208
  860. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +375 -382
  861. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +39 -47
  862. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +125 -144
  863. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +36 -70
  864. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +168 -0
  865. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +887 -0
  866. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +160 -0
  867. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +26 -34
  868. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +38 -46
  869. data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +41 -49
  870. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +42 -50
  871. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -28
  872. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +68 -76
  873. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +178 -184
  874. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +38 -46
  875. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +38 -46
  876. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +39 -47
  877. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +63 -73
  878. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +43 -51
  879. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +130 -138
  880. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +72 -80
  881. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +68 -76
  882. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +76 -86
  883. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +129 -137
  884. data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +145 -0
  885. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +31 -215
  886. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +617 -0
  887. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +289 -0
  888. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +284 -0
  889. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +233 -0
  890. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +42 -1349
  891. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +344 -0
  892. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +219 -0
  893. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +237 -0
  894. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +267 -0
  895. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +287 -0
  896. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +179 -0
  897. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +199 -0
  898. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +209 -0
  899. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +344 -0
  900. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +160 -0
  901. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +764 -0
  902. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +284 -0
  903. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +191 -0
  904. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +191 -0
  905. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +65 -73
  906. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +48 -56
  907. data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +29 -37
  908. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +37 -45
  909. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +37 -45
  910. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +37 -45
  911. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +37 -45
  912. data/vendor/local/share/doc/groonga/ja/html/search.html +13 -24
  913. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  914. data/vendor/local/share/doc/groonga/ja/html/server.html +15 -23
  915. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +22 -30
  916. data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -25
  917. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +82 -90
  918. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +15 -23
  919. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +15 -23
  920. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +16 -24
  921. data/vendor/local/share/doc/groonga/ja/html/server/package.html +99 -107
  922. data/vendor/local/share/doc/groonga/ja/html/spec.html +19 -27
  923. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +201 -209
  924. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +36 -36
  925. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +15 -23
  926. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +44 -48
  927. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +21 -29
  928. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +24 -29
  929. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +16 -24
  930. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +32 -40
  931. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +62 -70
  932. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -30
  933. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +77 -86
  934. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +15 -23
  935. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +56 -64
  936. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +84 -92
  937. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +20 -28
  938. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -26
  939. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +21 -29
  940. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +43 -51
  941. data/vendor/local/share/doc/pcre/AUTHORS +3 -3
  942. data/vendor/local/share/doc/pcre/ChangeLog +53 -0
  943. data/vendor/local/share/doc/pcre/LICENCE +3 -3
  944. data/vendor/local/share/doc/pcre/NEWS +6 -0
  945. data/vendor/local/share/doc/pcre/html/NON-AUTOTOOLS-BUILD.txt +8 -7
  946. data/vendor/local/share/groonga/mruby/LEGAL +35 -35
  947. data/vendor/local/share/license/cv2pdb/{README → README.MD} +28 -10
  948. data/vendor/local/share/license/groonga-normalizer-mysql/README.md +14 -22
  949. data/vendor/local/share/license/lz4/LICENSE +2 -2
  950. data/vendor/local/share/license/mruby/AUTHORS +3 -0
  951. data/vendor/local/share/license/mruby/MITL +1 -1
  952. data/vendor/local/share/license/mruby/README.md +1 -1
  953. data/vendor/local/share/license/msgpack/README.md +5 -34
  954. data/vendor/local/share/license/pcre/LICENCE +3 -3
  955. data/vendor/local/share/man/man1/lz4.1 +221 -86
  956. data/vendor/local/share/man/man1/lz4c.1 +222 -32
  957. data/vendor/local/share/man/man1/lz4cat.1 +221 -30
  958. data/vendor/local/share/man/man1/unlz4.1 +223 -0
  959. metadata +231 -87
  960. data/lib/2.1/groonga.so +0 -0
  961. data/vendor/local/lib/groonga/plugins/expression_rewriters/optimizer.rb +0 -147
  962. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/options.rb +0 -14
  963. data/vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif +0 -0
  964. data/vendor/local/share/doc/groonga/en/html/_static/comment-bright.png +0 -0
  965. data/vendor/local/share/doc/groonga/en/html/_static/comment-close.png +0 -0
  966. data/vendor/local/share/doc/groonga/en/html/_static/comment.png +0 -0
  967. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  968. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  969. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  970. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  971. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +0 -808
  972. data/vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif +0 -0
  973. data/vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png +0 -0
  974. data/vendor/local/share/doc/groonga/ja/html/_static/comment-close.png +0 -0
  975. data/vendor/local/share/doc/groonga/ja/html/_static/comment.png +0 -0
  976. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  977. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  978. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  979. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  980. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +0 -808
@@ -1,34 +1,26 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>9. Limitations &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>9. Limitations &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: './',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+ <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
22
13
  <script type="text/javascript" src="_static/jquery.js"></script>
23
14
  <script type="text/javascript" src="_static/underscore.js"></script>
24
15
  <script type="text/javascript" src="_static/doctools.js"></script>
16
+ <script type="text/javascript" src="_static/language_data.js"></script>
17
+
25
18
  <link rel="shortcut icon" href="_static/favicon.ico"/>
26
19
  <link rel="index" title="Index" href="genindex.html" />
27
20
  <link rel="search" title="Search" href="search.html" />
28
21
  <link rel="next" title="10. Troubleshooting" href="troubleshooting.html" />
29
22
  <link rel="prev" title="8.2. 検索" href="spec/search.html" />
30
- </head>
31
- <body>
23
+ </head><body>
32
24
  <div class="header">
33
25
  <h1 class="title">
34
26
  <a id="top-link" href="index.html">
@@ -58,7 +50,7 @@
58
50
  <li class="right" >
59
51
  <a href="spec/search.html" title="8.2. 検索"
60
52
  accesskey="P">previous</a> |</li>
61
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
53
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
62
54
  </ul>
63
55
  </div>
64
56
 
@@ -74,19 +66,21 @@
74
66
  <h2>9.1. Limitations of table<a class="headerlink" href="#limitations-of-table" title="Permalink to this headline">¶</a></h2>
75
67
  <p>A table has the following limitations.</p>
76
68
  <ul class="simple">
77
- <li>The maximum one key size: 4KiB</li>
78
- <li>The maximum total size of keys:<ul>
79
- <li>4GiB by default.</li>
80
- <li>1TiB by specifying <code class="docutils literal"><span class="pre">KEY_LARGE</span></code> flag to
81
- <a class="reference internal" href="reference/commands/table_create.html#table-create-flags"><span class="std std-ref">flags</span></a>. <code class="docutils literal"><span class="pre">KEY_LARGE</span></code> can be used only with
82
- <a class="reference internal" href="reference/tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a>.</li>
69
+ <li><p>The maximum one key size: 4KiB</p></li>
70
+ <li><p>The maximum total size of keys:</p>
71
+ <ul>
72
+ <li><p>4GiB by default.</p></li>
73
+ <li><p>1TiB by specifying <code class="docutils literal notranslate"><span class="pre">KEY_LARGE</span></code> flag to
74
+ <a class="reference internal" href="reference/commands/table_create.html#table-create-flags"><span class="std std-ref">flags</span></a>. <code class="docutils literal notranslate"><span class="pre">KEY_LARGE</span></code> can be used only with
75
+ <a class="reference internal" href="reference/tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a>.</p></li>
83
76
  </ul>
84
77
  </li>
85
- <li>The maximum number of records:<ul>
86
- <li><a class="reference internal" href="reference/tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a>: 1,073,741,815 (2 <sup>30</sup> - 9)</li>
87
- <li><a class="reference internal" href="reference/tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a>: 536,870,912 (2 <sup>29</sup>)</li>
88
- <li><a class="reference internal" href="reference/tables.html#table-pat-key"><span class="std std-ref">TABLE_PAT_KEY</span></a>: 1,073,741,823 (2 <sup>30</sup> - 1)</li>
89
- <li><a class="reference internal" href="reference/tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a>: 268,435,455 (2 <sup>28</sup> - 1)</li>
78
+ <li><p>The maximum number of records:</p>
79
+ <ul>
80
+ <li><p><a class="reference internal" href="reference/tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a>: 1,073,741,815 (2 <sup>30</sup> - 9)</p></li>
81
+ <li><p><a class="reference internal" href="reference/tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a>: 536,870,912 (2 <sup>29</sup>)</p></li>
82
+ <li><p><a class="reference internal" href="reference/tables.html#table-pat-key"><span class="std std-ref">TABLE_PAT_KEY</span></a>: 1,073,741,823 (2 <sup>30</sup> - 1)</p></li>
83
+ <li><p><a class="reference internal" href="reference/tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a>: 268,435,455 (2 <sup>28</sup> - 1)</p></li>
90
84
  </ul>
91
85
  </li>
92
86
  </ul>
@@ -95,17 +89,17 @@ conditions.</p>
95
89
  <p>For example, you need to use small size type for key to store many
96
90
  records. Because the maximum total size of keys limitation is exceeded
97
91
  before the maximum number of records limitation is exceeded. If you
98
- use <code class="docutils literal"><span class="pre">UInt64</span></code> (8byte) type and store 2 <sup>29</sup> records, total key
99
- size is 4GiB (= 8 * (2 <sup>29</sup>)). You can't add more records. You
100
- need to choose decreasing key size (e.g. <code class="docutils literal"><span class="pre">UInt32</span></code>) or using
101
- <code class="docutils literal"><span class="pre">KEY_LARGE</span></code> and <a class="reference internal" href="reference/tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a> to store more records.</p>
92
+ use <code class="docutils literal notranslate"><span class="pre">UInt64</span></code> (8byte) type and store 2 <sup>29</sup> records, total key
93
+ size is 4GiB (= 8 * (2 <sup>29</sup>)). You cant add more records. You
94
+ need to choose decreasing key size (e.g. <code class="docutils literal notranslate"><span class="pre">UInt32</span></code>) or using
95
+ <code class="docutils literal notranslate"><span class="pre">KEY_LARGE</span></code> and <a class="reference internal" href="reference/tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a> to store more records.</p>
102
96
  </div>
103
97
  <div class="section" id="limitations-of-indexing">
104
98
  <h2>9.2. Limitations of indexing<a class="headerlink" href="#limitations-of-indexing" title="Permalink to this headline">¶</a></h2>
105
99
  <p>A full-text index has the following limitations.</p>
106
100
  <ul class="simple">
107
- <li>The maximum number of distinct terms: 268,435,455 (more than 268 million)</li>
108
- <li>The maximum index size: 256GiB</li>
101
+ <li><p>The maximum number of distinct terms: 268,435,455 (more than 268 million)</p></li>
102
+ <li><p>The maximum index size: 256GiB</p></li>
109
103
  </ul>
110
104
  <p>Keep in mind that these limitations may vary depending on conditions.</p>
111
105
  </div>
@@ -113,7 +107,7 @@ need to choose decreasing key size (e.g. <code class="docutils literal"><span cl
113
107
  <h2>9.3. Limitations of column<a class="headerlink" href="#limitations-of-column" title="Permalink to this headline">¶</a></h2>
114
108
  <p>A column has the following limitation.</p>
115
109
  <ul class="simple">
116
- <li>The maximum stored data size of a column: 256GiB</li>
110
+ <li><p>The maximum stored data size of a column: 256GiB</p></li>
117
111
  </ul>
118
112
  </div>
119
113
  </div>
@@ -124,7 +118,7 @@ need to choose decreasing key size (e.g. <code class="docutils literal"><span cl
124
118
  </div>
125
119
  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
126
120
  <div class="sphinxsidebarwrapper">
127
- <h3><a href="index.html">Table Of Contents</a></h3>
121
+ <h3><a href="index.html">Table of Contents</a></h3>
128
122
  <ul>
129
123
  <li><a class="reference internal" href="#">9. Limitations</a><ul>
130
124
  <li><a class="reference internal" href="#limitations-of-table">9.1. Limitations of table</a></li>
@@ -142,12 +136,12 @@ need to choose decreasing key size (e.g. <code class="docutils literal"><span cl
142
136
  title="next chapter">10. Troubleshooting</a></p>
143
137
  <div id="searchbox" style="display: none" role="search">
144
138
  <h3>Quick search</h3>
139
+ <div class="searchformwrapper">
145
140
  <form class="search" action="search.html" method="get">
146
- <div><input type="text" name="q" /></div>
147
- <div><input type="submit" value="Go" /></div>
148
- <input type="hidden" name="check_keywords" value="yes" />
149
- <input type="hidden" name="area" value="default" />
141
+ <input type="text" name="q" />
142
+ <input type="submit" value="Go" />
150
143
  </form>
144
+ </div>
151
145
  </div>
152
146
  <script type="text/javascript">$('#searchbox').show(0);</script>
153
147
  </div>
@@ -166,11 +160,11 @@ need to choose decreasing key size (e.g. <code class="docutils literal"><span cl
166
160
  <li class="right" >
167
161
  <a href="spec/search.html" title="8.2. 検索"
168
162
  >previous</a> |</li>
169
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
163
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
170
164
  </ul>
171
165
  </div>
172
166
  <div class="footer" role="contentinfo">
173
- &#169; Copyright 2009-2018, Brazil, Inc.
167
+ &#169; Copyright 2009-2019, Brazil, Inc.
174
168
  </div>
175
169
  </body>
176
170
  </html>
@@ -1,32 +1,24 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>News &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>News &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: './',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+ <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
22
13
  <script type="text/javascript" src="_static/jquery.js"></script>
23
14
  <script type="text/javascript" src="_static/underscore.js"></script>
24
15
  <script type="text/javascript" src="_static/doctools.js"></script>
16
+ <script type="text/javascript" src="_static/language_data.js"></script>
17
+
25
18
  <link rel="shortcut icon" href="_static/favicon.ico"/>
26
19
  <link rel="index" title="Index" href="genindex.html" />
27
20
  <link rel="search" title="Search" href="search.html" />
28
- </head>
29
- <body>
21
+ </head><body>
30
22
  <div class="header">
31
23
  <h1 class="title">
32
24
  <a id="top-link" href="index.html">
@@ -50,7 +42,7 @@
50
42
  <li class="right" style="margin-right: 10px">
51
43
  <a href="genindex.html" title="General Index"
52
44
  accesskey="I">index</a></li>
53
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
45
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
54
46
  </ul>
55
47
  </div>
56
48
 
@@ -61,22 +53,951 @@
61
53
 
62
54
  <div class="section" id="news">
63
55
  <h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
56
+ <div class="section" id="release-9-0-2-2019-04-29">
57
+ <span id="release-9-0-2"></span><h2>Release 9.0.2 - 2019-04-29<a class="headerlink" href="#release-9-0-2-2019-04-29" title="Permalink to this headline">¶</a></h2>
58
+ <p>We provide a package for Windows made from VC++ from this release.</p>
59
+ <p>We also provide a package for Windows made form MinGW as in the past.
60
+ However, we will provide it made from VC++ instead of making from MinGW sooner or later.</p>
61
+ <div class="section" id="improvements">
62
+ <h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
63
+ <ul class="simple">
64
+ <li><p>[<a class="reference internal" href="reference/commands/column_create.html"><span class="doc">column_create</span></a>] Added a new flag <code class="docutils literal notranslate"><span class="pre">INDEX_LARGE</span></code> for index column.</p>
65
+ <ul>
66
+ <li><p>We can make an index column has space that two times of default by this flag.</p></li>
67
+ <li><p>However, note that it also uses two times of memory usage.</p></li>
68
+ <li><p>This flag useful when index target data are large.</p></li>
69
+ <li><p>Large data must have many records (normally at least 10 millions records) and at least one of the following features.</p>
70
+ <ul>
71
+ <li><p>Index targets are multiple columns</p></li>
72
+ <li><p>Index table has tokenizer</p></li>
73
+ </ul>
74
+ </li>
75
+ </ul>
76
+ </li>
77
+ <li><p>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] Added a new statistics <code class="docutils literal notranslate"><span class="pre">next_physical_segment_id</span></code> and <code class="docutils literal notranslate"><span class="pre">max_n_physical_segments</span></code> for physical segment information.</p>
78
+ <ul>
79
+ <li><p>We can confirm usage of index column space and max value of index column space by this information.</p></li>
80
+ </ul>
81
+ </li>
82
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Added support for window function over shard.</p></li>
83
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added support for window function over shard.</p></li>
84
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Added support for window function over shard.</p></li>
85
+ <li><p>We provided a package for Windows made from VC++.</p></li>
86
+ <li><p>[<a class="reference internal" href="reference/commands/io_flush.html"><span class="doc">io_flush</span></a>] Added a new option <code class="docutils literal notranslate"><span class="pre">--recursive</span> <span class="pre">dependent</span></code></p>
87
+ <ul>
88
+ <li><p>We can all of the specified flush target object, child objects, corresponding table of an index column and corresponding index column are flush target objects.</p></li>
89
+ </ul>
90
+ </li>
91
+ </ul>
92
+ </div>
93
+ <div class="section" id="fixes">
94
+ <h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
95
+ <ul class="simple">
96
+ <li><p>Fixed “unknown type name ‘bool’” compilation error in some environments.</p></li>
97
+ <li><p>Fixed a bug that incorrect output number over Int32 by command of execute via mruby (e.g. <code class="docutils literal notranslate"><span class="pre">logical_select</span></code>, <code class="docutils literal notranslate"><span class="pre">logical_range_filter</span></code>, <code class="docutils literal notranslate"><span class="pre">logical_count</span></code>, etc.). [GitHub#936] [Patch by HashidaTKS]</p></li>
98
+ </ul>
99
+ </div>
100
+ <div class="section" id="thanks">
101
+ <h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
102
+ <ul class="simple">
103
+ <li><p>HashidaTKS</p></li>
104
+ </ul>
105
+ </div>
106
+ </div>
107
+ <div class="section" id="release-9-0-1-2019-03-29">
108
+ <span id="release-9-0-1"></span><h2>Release 9.0.1 - 2019-03-29<a class="headerlink" href="#release-9-0-1-2019-03-29" title="Permalink to this headline">¶</a></h2>
109
+ <div class="section" id="id1">
110
+ <h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
111
+ <ul class="simple">
112
+ <li><p>Added support to acccept null for vector value.</p>
113
+ <ul>
114
+ <li><p>You can use <cite>select … –columns[vector].flags COLUMN_VECTOR –columns[vector].value “null”</cite></p></li>
115
+ </ul>
116
+ </li>
117
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Translated document into English.</p></li>
118
+ <li><p>Added more checks and logging for invalid indexes. It helps to clarify the index related bugs.</p></li>
119
+ <li><p>Improved an explanation about <code class="docutils literal notranslate"><span class="pre">GRN_TABLE_SELECT_ENOUGH_FILTERED_RATIO</span></code> behavior in news at <a class="reference internal" href="#release-8-0-6"><span class="std std-ref">Release 8.0.6 - 2018-08-29</span></a>.</p></li>
120
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added new argument <code class="docutils literal notranslate"><span class="pre">--load_table</span></code>, <code class="docutils literal notranslate"><span class="pre">--load_columns</span></code> and <code class="docutils literal notranslate"><span class="pre">--load_values</span></code>.</p>
121
+ <ul>
122
+ <li><p>You can store a result of <code class="docutils literal notranslate"><span class="pre">select</span></code> in a table that specifying <code class="docutils literal notranslate"><span class="pre">--load_table</span></code>.</p></li>
123
+ <li><p><code class="docutils literal notranslate"><span class="pre">--load_values</span></code> option specifies columns of result of <code class="docutils literal notranslate"><span class="pre">select</span></code>.</p></li>
124
+ <li><p><code class="docutils literal notranslate"><span class="pre">--load_columns</span></code> options specifies columns of table that specifying <code class="docutils literal notranslate"><span class="pre">--load_table</span></code>.</p></li>
125
+ <li><p>In this way, you can store values of columns that specifying with <code class="docutils literal notranslate"><span class="pre">--load_values</span></code> into columns that specifying with <code class="docutils literal notranslate"><span class="pre">--load_columns</span></code>.</p></li>
126
+ </ul>
127
+ </li>
128
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added documentation about <code class="docutils literal notranslate"><span class="pre">load_table</span></code>, <code class="docutils literal notranslate"><span class="pre">load_columns</span></code> and <code class="docutils literal notranslate"><span class="pre">load_values</span></code>.</p></li>
129
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Added supoort to display a table of load destination in a query log.</p>
130
+ <ul>
131
+ <li><p>A name of table of load destination display as string in <code class="docutils literal notranslate"><span class="pre">[]</span></code> as below.</p></li>
132
+ <li><p><code class="docutils literal notranslate"><span class="pre">:000000000000000</span> <span class="pre">load(3):</span> <span class="pre">[LoadedLogs][3]</span></code></p></li>
133
+ </ul>
134
+ </li>
135
+ <li><p>Added a new API:</p>
136
+ <ul>
137
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_ii_get_flags()</span></code></p></li>
138
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_index_column_diff()</span></code></p></li>
139
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_memory_get_usage()</span></code></p></li>
140
+ </ul>
141
+ </li>
142
+ <li><p>Added <code class="docutils literal notranslate"><span class="pre">index_column_diff</span></code> command to check broken index column. If you want to log progress of command execution, set log level to debug.</p></li>
143
+ </ul>
144
+ </div>
145
+ <div class="section" id="id2">
146
+ <h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
147
+ <ul class="simple">
148
+ <li><p>[<a class="reference internal" href="reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] Changed to return an empty vector for no match.</p>
149
+ <ul>
150
+ <li><p>In such a case, an empty vector <code class="docutils literal notranslate"><span class="pre">[]</span></code> is returned instead of <code class="docutils literal notranslate"><span class="pre">null</span></code>.</p></li>
151
+ </ul>
152
+ </li>
153
+ <li><p>Fixed a warning about possibility of counting threads overflow.
154
+ In real world, it doesn’t affect user because enourmous number of threads is not used. [GitHub#904]</p></li>
155
+ <li><p>Fixed build error on macOS [GitHub#909] [Reported by shiro615]</p></li>
156
+ <li><p>Fixed a stop word handling bug.</p>
157
+ <ul>
158
+ <li><p>This bug occurs when we set the first token as a stop word in our query.</p></li>
159
+ <li><p>If this bug occurs, our search query isn’t hit.</p></li>
160
+ </ul>
161
+ </li>
162
+ <li><p>[<a class="reference internal" href="reference/api/global_configurations.html"><span class="doc">Global configurations</span></a>] Fixed a typo about parameter name of <code class="docutils literal notranslate"><span class="pre">grn_lock_set_timeout</span></code>.</p></li>
163
+ <li><p>Fixed a bug that deleted records may be matched because of updating indexes incorrectly.</p>
164
+ <ul>
165
+ <li><p>It may occure when large number of records is added or deleted.</p></li>
166
+ </ul>
167
+ </li>
168
+ <li><p>Fixed a memory leak when <code class="docutils literal notranslate"><span class="pre">logical_range_filter</span></code> returns no records. [GitHub#911] [Patch by HashidaTKS]</p></li>
169
+ <li><p>Fixed a bug that query will not match because of loading data is not normalized correctly.
170
+ [PGroonga#GitHub#93, GitHub#912,GitHub#913] [Reported by kamicup and dodaisuke]</p>
171
+ <ul>
172
+ <li><p>This bug occurs when load data contains whitespace after KATAKANA and <code class="docutils literal notranslate"><span class="pre">unify_kana</span></code> option is used for normalizer.</p></li>
173
+ </ul>
174
+ </li>
175
+ <li><p>Fixed a bug that an indexes is broken during updating indexes.</p>
176
+ <ul>
177
+ <li><p>It may occurs when repeating to add large number of records or delete them for a long term.</p></li>
178
+ </ul>
179
+ </li>
180
+ <li><p>Fixed a crash bug that allocated working area is not enough size when updating indexes.</p></li>
181
+ </ul>
182
+ </div>
183
+ <div class="section" id="id3">
184
+ <h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
185
+ <ul class="simple">
186
+ <li><p>shiro615</p></li>
187
+ <li><p>HashidaTKS</p></li>
188
+ <li><p>kamicup</p></li>
189
+ <li><p>dodaisuke</p></li>
190
+ </ul>
191
+ </div>
192
+ </div>
193
+ <div class="section" id="release-9-0-0-2019-02-09">
194
+ <span id="release-9-0-0"></span><h2>Release 9.0.0 - 2019-02-09<a class="headerlink" href="#release-9-0-0-2019-02-09" title="Permalink to this headline">¶</a></h2>
195
+ <p>This is a major version up! But It keeps backward compatibility.
196
+ You can upgrade to 9.0.0 without rebuilding database.</p>
197
+ <div class="section" id="id4">
198
+ <h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
199
+ <ul class="simple">
200
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Added a new tokenizer <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code>.</p>
201
+ <ul>
202
+ <li><p>You can extract tokens by regular expression.</p>
203
+ <ul>
204
+ <li><p>This tokenizer extracts only token that matches the regular expression.</p></li>
205
+ </ul>
206
+ </li>
207
+ <li><p>You can also specify multiple patterns of regular expression.</p></li>
208
+ </ul>
209
+ </li>
210
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Added a new tokenizer <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code>.</p>
211
+ <ul>
212
+ <li><p>You can extract tokens by a value of columns of existing a table.</p></li>
213
+ </ul>
214
+ </li>
215
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Added support for dumping binary data.</p></li>
216
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added support for similer search against index column.</p>
217
+ <ul>
218
+ <li><p>If you have used multi column index, you can similar search against all source columns by this feature.</p></li>
219
+ </ul>
220
+ </li>
221
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Added new option <code class="docutils literal notranslate"><span class="pre">remove_blank</span></code> for <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code>.</p>
222
+ <ul>
223
+ <li><p>This option remove white spaces.</p></li>
224
+ </ul>
225
+ </li>
226
+ <li><p>[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Improve display of thread id in log.</p>
227
+ <ul>
228
+ <li><p>Because It was easy to confuse thread id and process id on Windows version, it made clear which is a thread id or a process id.</p></li>
229
+ </ul>
230
+ </li>
231
+ </ul>
232
+ </div>
233
+ </div>
234
+ <div class="section" id="release-8-1-1-2019-01-29">
235
+ <span id="release-8-1-1"></span><h2>Release 8.1.1 - 2019-01-29<a class="headerlink" href="#release-8-1-1-2019-01-29" title="Permalink to this headline">¶</a></h2>
236
+ <div class="section" id="id5">
237
+ <h3>Improvements<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
238
+ <ul class="simple">
239
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Added new argument <code class="docutils literal notranslate"><span class="pre">--load_table</span></code>, <code class="docutils literal notranslate"><span class="pre">--load_columns</span></code> and <code class="docutils literal notranslate"><span class="pre">--load_values</span></code>.</p>
240
+ <ul>
241
+ <li><p>You can store a result of <code class="docutils literal notranslate"><span class="pre">logical_select</span></code> in a table that specifying <code class="docutils literal notranslate"><span class="pre">--load_table</span></code>.</p></li>
242
+ <li><p><code class="docutils literal notranslate"><span class="pre">--load_values</span></code> option specifies columns of result of <code class="docutils literal notranslate"><span class="pre">logical_select</span></code>.</p></li>
243
+ <li><p><code class="docutils literal notranslate"><span class="pre">--load_columns</span></code> options specifies columns of table that specifying <code class="docutils literal notranslate"><span class="pre">--load_table</span></code>.</p></li>
244
+ <li><p>In this way, you can store values of columns that specifying with <code class="docutils literal notranslate"><span class="pre">--load_values</span></code> into columns that specifying with <code class="docutils literal notranslate"><span class="pre">--load_columns</span></code>.</p></li>
245
+ </ul>
246
+ </li>
247
+ <li><p>Improve error log when update error of index.</p>
248
+ <ul>
249
+ <li><p>Added more information in the log.</p>
250
+ <ul>
251
+ <li><p>For example, output source buffer and chunk when occur merge of posting lists error.</p></li>
252
+ <li><p>Also, outputting the log a free space size of a buffer and request size of a buffer when occurs error of allocating a buffer.</p></li>
253
+ </ul>
254
+ </li>
255
+ </ul>
256
+ </li>
257
+ <li><p>[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added a new option <code class="docutils literal notranslate"><span class="pre">--log-flags</span></code>.</p>
258
+ <ul>
259
+ <li><p>We can specify output items of a log of the Groonga.</p></li>
260
+ <li><p>We can output as below items.</p>
261
+ <ul>
262
+ <li><p>Timestamp</p></li>
263
+ <li><p>Log message</p></li>
264
+ <li><p>Location(the location where the log was output)</p></li>
265
+ <li><p>Process id</p></li>
266
+ <li><p>Thread id</p></li>
267
+ </ul>
268
+ </li>
269
+ <li><p>We can specify prefix as below.</p>
270
+ <ul>
271
+ <li><p><code class="docutils literal notranslate"><span class="pre">+</span></code></p>
272
+ <ul>
273
+ <li><p>This prefix means that “add the flag”.</p></li>
274
+ </ul>
275
+ </li>
276
+ <li><p><code class="docutils literal notranslate"><span class="pre">-</span></code></p>
277
+ <ul>
278
+ <li><p>This prefix means that “remove the flag”.</p></li>
279
+ </ul>
280
+ </li>
281
+ <li><p>No prefix means that “replace existing flags”.</p></li>
282
+ </ul>
283
+ </li>
284
+ <li><p>Specifically, we can specify flags as below.</p>
285
+ <ul>
286
+ <li><p><code class="docutils literal notranslate"><span class="pre">none</span></code></p>
287
+ <ul>
288
+ <li><p>Output nothing into the log.</p></li>
289
+ </ul>
290
+ </li>
291
+ <li><p><code class="docutils literal notranslate"><span class="pre">time</span></code></p>
292
+ <ul>
293
+ <li><p>Output a timestamp into the log.</p></li>
294
+ </ul>
295
+ </li>
296
+ <li><p><code class="docutils literal notranslate"><span class="pre">message</span></code></p>
297
+ <ul>
298
+ <li><p>Output log messages into the log.</p></li>
299
+ </ul>
300
+ </li>
301
+ <li><p><code class="docutils literal notranslate"><span class="pre">location</span></code></p>
302
+ <ul>
303
+ <li><p>Output the location where the log was output( a file name, a line and a function name) and process id.</p></li>
304
+ </ul>
305
+ </li>
306
+ <li><p><code class="docutils literal notranslate"><span class="pre">process_id</span></code></p>
307
+ <ul>
308
+ <li><p>Output a process id into the log.</p></li>
309
+ </ul>
310
+ </li>
311
+ <li><p><code class="docutils literal notranslate"><span class="pre">pid</span></code></p>
312
+ <ul>
313
+ <li><p>This flag is an alias of <code class="docutils literal notranslate"><span class="pre">process_id</span></code>.</p></li>
314
+ </ul>
315
+ </li>
316
+ <li><p><code class="docutils literal notranslate"><span class="pre">thread_id</span></code></p>
317
+ <ul>
318
+ <li><p>Output thread id into the log.</p></li>
319
+ </ul>
320
+ </li>
321
+ <li><p><code class="docutils literal notranslate"><span class="pre">all</span></code></p>
322
+ <ul>
323
+ <li><p>This flag specifies all flags except <code class="docutils literal notranslate"><span class="pre">none</span></code> and <code class="docutils literal notranslate"><span class="pre">default</span></code> flags.</p></li>
324
+ </ul>
325
+ </li>
326
+ <li><p><code class="docutils literal notranslate"><span class="pre">default</span></code></p>
327
+ <ul>
328
+ <li><p>Output a timestamp and log messages into the log.</p></li>
329
+ </ul>
330
+ </li>
331
+ </ul>
332
+ </li>
333
+ <li><p>We can also specify multiple log flags by separating flags with <code class="docutils literal notranslate"><span class="pre">|</span></code>.</p></li>
334
+ </ul>
335
+ </li>
336
+ </ul>
337
+ </div>
338
+ <div class="section" id="id6">
339
+ <h3>Fixes<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
340
+ <ul>
341
+ <li><p>Fixed a memory leak when occurs index update error.</p></li>
342
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Fixed a bug that stateless normalizers and stateful normalizers return wrong results when we use them at the same time.</p>
343
+ <blockquote>
344
+ <div><ul class="simple">
345
+ <li><p>Stateless normalizers are below.</p>
346
+ <ul>
347
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_kana</span></code></p></li>
348
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_kana_case</span></code></p></li>
349
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_kana_voiced_sound_mark</span></code></p></li>
350
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_hyphen</span></code></p></li>
351
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_prolonged_sound_mark</span></code></p></li>
352
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_hyphen_and_prolonged_sound_mark</span></code></p></li>
353
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_middle_dot</span></code></p></li>
354
+ </ul>
355
+ </li>
356
+ <li><p>Stateful normalizers are below.</p>
357
+ <ul>
358
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_katakana_v_sounds</span></code></p></li>
359
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_katakana_bu_sound</span></code></p></li>
360
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_to_romaji</span></code></p></li>
361
+ </ul>
362
+ </li>
363
+ </ul>
364
+ </div></blockquote>
365
+ </li>
366
+ </ul>
367
+ </div>
368
+ </div>
369
+ <div class="section" id="release-8-1-0-2018-12-29">
370
+ <span id="release-8-1-0"></span><h2>Release 8.1.0 - 2018-12-29<a class="headerlink" href="#release-8-1-0-2018-12-29" title="Permalink to this headline">¶</a></h2>
371
+ <div class="section" id="id7">
372
+ <h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
373
+ <ul class="simple">
374
+ <li><p>[httpd] Updated bundled nginx to 1.15.8.</p></li>
375
+ </ul>
376
+ </div>
377
+ <div class="section" id="id8">
378
+ <h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
379
+ <ul class="simple">
380
+ <li><p>Fixed a bug that unlock against DB is always executed after flush when after execute a <code class="docutils literal notranslate"><span class="pre">io_flush</span></code> command.</p></li>
381
+ <li><p>Fixed a bug that <code class="docutils literal notranslate"><span class="pre">reindex</span></code> command doesn’t finish when execute a <code class="docutils literal notranslate"><span class="pre">reindex</span></code> command against table that has record that has not references.</p></li>
382
+ </ul>
383
+ </div>
384
+ </div>
385
+ <div class="section" id="release-8-0-9-2018-11-29">
386
+ <span id="release-8-0-9"></span><h2>Release 8.0.9 - 2018-11-29<a class="headerlink" href="#release-8-0-9-2018-11-29" title="Permalink to this headline">¶</a></h2>
387
+ <div class="section" id="id9">
388
+ <h3>Improvements<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
389
+ <ul class="simple">
390
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Improved that output a tokenizer name in error message when create tokenizer fail.</p></li>
391
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenDelimit] Supported that customizing delimiter of a token.</p>
392
+ <ul>
393
+ <li><p>You can use token other than whitespace as a token of delimiter.</p></li>
394
+ </ul>
395
+ </li>
396
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenDelimit] Added new option <code class="docutils literal notranslate"><span class="pre">pattern</span></code>.</p>
397
+ <ul>
398
+ <li><p>You can specify delimiter with regular expression by this option.</p></li>
399
+ </ul>
400
+ </li>
401
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Added force_prefix_search value to each token information.</p>
402
+ <ul>
403
+ <li><p>“force_prefix” is kept for backward compatibility.</p></li>
404
+ </ul>
405
+ </li>
406
+ <li><p>[<a class="reference internal" href="reference/token_filters.html"><span class="doc">Token filters</span></a>] Added built-in token filter <code class="docutils literal notranslate"><span class="pre">TokenFilterNFKC100</span></code>.</p>
407
+ <ul>
408
+ <li><p>You can convert katakana to hiragana like NormalizerNFKC100 with a <code class="docutils literal notranslate"><span class="pre">unify_kana</span></code> option.</p></li>
409
+ </ul>
410
+ </li>
411
+ <li><p>[<a class="reference internal" href="reference/token_filters.html"><span class="doc">Token filters</span></a>][TokenFilterStem] Added new option <code class="docutils literal notranslate"><span class="pre">algorithm</span></code>.</p>
412
+ <ul>
413
+ <li><p>You can also stem language other than English(French, Spanish, Portuguese, Italian, Romanian, German, Dutch, Swedish, Norwegian, Danish, Russian, Finnish) by this option.</p></li>
414
+ </ul>
415
+ </li>
416
+ <li><p>[<a class="reference internal" href="reference/token_filters.html"><span class="doc">Token filters</span></a>][TokenFilterStopWord] Added new option <code class="docutils literal notranslate"><span class="pre">column</span></code>.</p>
417
+ <ul>
418
+ <li><p>You can specify stop word in a column other than is_stop_word column by this option.</p></li>
419
+ </ul>
420
+ </li>
421
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported output options of token filter options.</p>
422
+ <ul>
423
+ <li><p>If you specify a tokenizer like <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> or <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code> etc that has options, you can output these options with <code class="docutils literal notranslate"><span class="pre">table_list</span></code> command.</p></li>
424
+ </ul>
425
+ </li>
426
+ <li><p>[<a class="reference internal" href="reference/commands/truncate.html"><span class="doc">truncate</span></a>] Supported a table that it has token filter option.</p>
427
+ <ul>
428
+ <li><p>You can <code class="docutils literal notranslate"><span class="pre">truncate</span></code> even a tabel that it has token filter like <code class="docutils literal notranslate"><span class="pre">TokenFilterStem</span></code> or <code class="docutils literal notranslate"><span class="pre">TokenStopWord</span></code> that has options.</p></li>
429
+ </ul>
430
+ </li>
431
+ <li><p>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] Support output of options of token filter.</p></li>
432
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Added new option for <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> that <code class="docutils literal notranslate"><span class="pre">unify_to_romaji</span></code> option.</p>
433
+ <ul>
434
+ <li><p>You can normalize hiragana and katakana to romaji by this option.</p></li>
435
+ </ul>
436
+ </li>
437
+ <li><p>[query-log][show-condition] Supported “func() &gt; 0” case.</p></li>
438
+ <li><p>[Windows] Improved that ensure flushing on unmap.</p></li>
439
+ <li><p>Improved error message on opening input file error.</p></li>
440
+ <li><p>[httpd] Updated bundled nginx to 1.15.7.</p>
441
+ <ul>
442
+ <li><p>contains security fix for CVE-2018-16843 and CVE-2018-16844.</p></li>
443
+ </ul>
444
+ </li>
445
+ </ul>
446
+ </div>
447
+ <div class="section" id="id10">
448
+ <h3>Fixes<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
449
+ <ul>
450
+ <li><p>Fixed a memory leak when evaluating window function.</p></li>
451
+ <li><p>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed bug that log content may be mixed.</p></li>
452
+ <li><p>Fixed a bug that generates invalid JSON when occurs error of slice on output_columns.</p></li>
453
+ <li><p>Fixed a memory leak when getting nested reference vector column value.</p></li>
454
+ <li><p>Fixed a crash bug when outputting warning logs of index corruption.</p></li>
455
+ <li><p>Fix a crash bug when temporary vector is reused in expression evaluation.</p>
456
+ <ul class="simple">
457
+ <li><p>For example, crash when evaluating an expression that uses a vector as below.</p></li>
458
+ </ul>
459
+ <p><code class="docutils literal notranslate"><span class="pre">_score</span> <span class="pre">=</span> <span class="pre">_score</span> <span class="pre">+</span> <span class="pre">(vector_size(categories)</span> <span class="pre">&gt;</span> <span class="pre">0)</span></code></p>
460
+ </li>
461
+ <li><p>Fix a bug that hits a value of vector columns deleted by a delete command.[GitHub PGroonga#85][Reported by dodaisuke]</p></li>
462
+ </ul>
463
+ </div>
464
+ <div class="section" id="id11">
465
+ <h3>Thanks<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
466
+ <ul class="simple">
467
+ <li><p>dodaisuke</p></li>
468
+ </ul>
469
+ </div>
470
+ </div>
471
+ <div class="section" id="release-8-0-8-2018-10-29">
472
+ <span id="release-8-0-8"></span><h2>Release 8.0.8 - 2018-10-29<a class="headerlink" href="#release-8-0-8-2018-10-29" title="Permalink to this headline">¶</a></h2>
473
+ <div class="section" id="id12">
474
+ <h3>Improvements<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
475
+ <ul>
476
+ <li><p>[<a class="reference internal" href="reference/commands/table_list.html"><span class="doc">table_list</span></a>] Supported output options of default tokenizer.</p>
477
+ <ul class="simple">
478
+ <li><p>If you specify a tokenizer like <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> or <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code> etc that has options, you can output these options with <code class="docutils literal notranslate"><span class="pre">table_list</span></code> command.</p></li>
479
+ </ul>
480
+ </li>
481
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported normalizer options in sequential match with <code class="docutils literal notranslate"><span class="pre">record</span> <span class="pre">&#64;</span> <span class="pre">'query'</span></code>.</p></li>
482
+ <li><p>[<a class="reference internal" href="reference/commands/truncate.html"><span class="doc">truncate</span></a>] Supported a table that it has tokenizer option.</p>
483
+ <ul class="simple">
484
+ <li><p>You can <code class="docutils literal notranslate"><span class="pre">truncate</span></code> even a tabel that it has tokenizer like <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> or <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code> etc that has options.</p></li>
485
+ </ul>
486
+ </li>
487
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenMecab] Added new option <code class="docutils literal notranslate"><span class="pre">target_class</span></code></p>
488
+ <ul>
489
+ <li><p>This option searches a token of specifying a part-of-speech. For example, you can search only a noun.</p></li>
490
+ <li><p>This option can also specify subclasses and exclude or add specific part-of-speech of specific using <code class="docutils literal notranslate"><span class="pre">+</span></code> or <code class="docutils literal notranslate"><span class="pre">-</span></code>. So, you can also search except a pronoun as below.</p>
491
+ <p><code class="docutils literal notranslate"><span class="pre">'TokenMecab(&quot;target_class&quot;,</span> <span class="pre">&quot;-名詞/代名詞&quot;,</span> <span class="pre">&quot;target_class&quot;,</span> <span class="pre">&quot;+&quot;)'</span></code></p>
492
+ </li>
493
+ </ul>
494
+ </li>
495
+ <li><p>[<a class="reference internal" href="reference/commands/io_flush.html"><span class="doc">io_flush</span></a>] Supported locking of a database during a <code class="docutils literal notranslate"><span class="pre">io_flush</span></code>.</p>
496
+ <ul class="simple">
497
+ <li><p>Because Groonga had a problem taht is a crash when deleteing a table of a target of a <code class="docutils literal notranslate"><span class="pre">io_flush</span></code> during execution of a <code class="docutils literal notranslate"><span class="pre">io_flush</span></code>.</p></li>
498
+ </ul>
499
+ </li>
500
+ <li><p>[<a class="reference internal" href="reference/functions/cast_loose.html"><span class="doc">cast_loose</span></a>] Added a new function <code class="docutils literal notranslate"><span class="pre">cast_loose</span></code>.</p>
501
+ <ul class="simple">
502
+ <li><p>This function cast to a type to specify. If a value to specify can’t cast, it become to a default value to specify.</p></li>
503
+ </ul>
504
+ </li>
505
+ <li><p>Added optimize the order of evaluation of a conditional expression.(experimental)</p>
506
+ <ul>
507
+ <li><p>You can active this feature by setting environment value as below.</p>
508
+ <p><code class="docutils literal notranslate"><span class="pre">GRN_EXPR_OPTIMIZE=yes</span></code></p>
509
+ </li>
510
+ </ul>
511
+ </li>
512
+ <li><p>Supported <code class="docutils literal notranslate"><span class="pre">(?-mix:XXX)</span></code> form for index searchable regular expression. [groonga-dev,04683][Reported by Masatoshi SEKI]</p>
513
+ <ul class="simple">
514
+ <li><p><code class="docutils literal notranslate"><span class="pre">(?-mix:XXX)</span></code> form treats the same as XXX.</p></li>
515
+ </ul>
516
+ </li>
517
+ <li><p>[httpd] Updated bundled nginx to 1.15.5.</p></li>
518
+ <li><p>Supported Ubuntu 18.10 (Cosmic Cuttlefish)</p></li>
519
+ </ul>
520
+ </div>
521
+ <div class="section" id="id13">
522
+ <h3>Fixes<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
523
+ <ul class="simple">
524
+ <li><p>Fixed a bug that the Groonga GQTP server may fail to accept a new connection. [groonga-dev,04688][Reported by Yutaro Shimamura]</p>
525
+ <ul>
526
+ <li><p>It’s caused when interruption client process without using quit.</p></li>
527
+ </ul>
528
+ </li>
529
+ </ul>
530
+ </div>
531
+ <div class="section" id="id14">
532
+ <h3>Thanks<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
533
+ <ul class="simple">
534
+ <li><p>Masatoshi SEKI</p></li>
535
+ <li><p>Yutaro Shimamura</p></li>
536
+ </ul>
537
+ </div>
538
+ </div>
539
+ <div class="section" id="release-8-0-7-2018-09-29">
540
+ <span id="release-8-0-7"></span><h2>Release 8.0.7 - 2018-09-29<a class="headerlink" href="#release-8-0-7-2018-09-29" title="Permalink to this headline">¶</a></h2>
541
+ <div class="section" id="id15">
542
+ <h3>Improvements<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
543
+ <ul>
544
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenMecab] support outputting metadata of Mecab.</p>
545
+ <ul>
546
+ <li><p>Added new option <code class="docutils literal notranslate"><span class="pre">include_class</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code>.</p>
547
+ <p>This option outputs <code class="docutils literal notranslate"><span class="pre">class</span></code> and <code class="docutils literal notranslate"><span class="pre">subclass</span></code> in Mecab’s metadata.</p>
548
+ </li>
549
+ <li><p>Added new option <code class="docutils literal notranslate"><span class="pre">include_reading</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code>.</p>
550
+ <p>This option outputs <code class="docutils literal notranslate"><span class="pre">reading</span></code> in Mecab’s metadata.</p>
551
+ </li>
552
+ <li><p>Added new option <code class="docutils literal notranslate"><span class="pre">include_form</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code>.</p>
553
+ <p>This option outputs <code class="docutils literal notranslate"><span class="pre">inflected_type</span></code>, <code class="docutils literal notranslate"><span class="pre">inflected_form</span></code> and <code class="docutils literal notranslate"><span class="pre">base_form</span></code> in Mecab’s metadata.</p>
554
+ </li>
555
+ <li><p>Added new option <code class="docutils literal notranslate"><span class="pre">use_reading</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code>.</p>
556
+ <p>This option supports a search by kana.</p>
557
+ <p>This option is useful for countermeasure of orthographical variants because it searches with kana.</p>
558
+ </li>
559
+ </ul>
560
+ </li>
561
+ <li><p>[plugin] Groonga now can grab plugins from multiple directories.</p>
562
+ <p>You can specify multiple directories to <code class="docutils literal notranslate"><span class="pre">GRN_PLUGINS_PATH</span></code> separated with “:” on non Windows, “;” on Windows.</p>
563
+ <p><code class="docutils literal notranslate"><span class="pre">GRN_PLUGINS_PATH</span></code> has high priority than the existing <code class="docutils literal notranslate"><span class="pre">GRN_PLUGINS_DIR</span></code>.
564
+ Currently, this option is not supported Windows.</p>
565
+ </li>
566
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenNgram] Added new option <code class="docutils literal notranslate"><span class="pre">unify_alphabet</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.</p>
567
+ <p>If we use <code class="docutils literal notranslate"><span class="pre">unify_alphabet</span></code> as <code class="docutils literal notranslate"><span class="pre">false</span></code>, <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> uses bigram tokenize method for ASCII character.</p>
568
+ </li>
569
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenNgram] Added new option <code class="docutils literal notranslate"><span class="pre">unify_symbol</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.</p>
570
+ <p><code class="docutils literal notranslate"><span class="pre">TokenNgram(&quot;unify_symbol&quot;,</span> <span class="pre">false)</span></code> is same behavior of <code class="docutils literal notranslate"><span class="pre">TokenBigramSplitSymbol</span></code>.</p>
571
+ </li>
572
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenNgram] Added new option <code class="docutils literal notranslate"><span class="pre">unify_digit</span></code> for <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.</p>
573
+ <p>If we use <code class="docutils literal notranslate"><span class="pre">unify_digit</span></code> as <code class="docutils literal notranslate"><span class="pre">false</span></code>, If we set false, <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> uses bigram tokenize method for digits.</p>
574
+ </li>
575
+ <li><p>[httpd] Updated bundled nginx to 1.15.4.</p></li>
576
+ </ul>
577
+ </div>
578
+ <div class="section" id="id16">
579
+ <h3>Fixes<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
580
+ <ul class="simple">
581
+ <li><p>Fixed wrong score calculations on some cases.</p>
582
+ <ul>
583
+ <li><p>It’s caused when adding, multiplication or division numeric to a bool value.</p></li>
584
+ <li><p>It’s caused when comparing a scalar and vector columns using <code class="docutils literal notranslate"><span class="pre">!=</span></code> or <code class="docutils literal notranslate"><span class="pre">==</span></code>.</p></li>
585
+ </ul>
586
+ </li>
587
+ </ul>
588
+ </div>
589
+ </div>
590
+ <div class="section" id="release-8-0-6-2018-08-29">
591
+ <span id="release-8-0-6"></span><h2>Release 8.0.6 - 2018-08-29<a class="headerlink" href="#release-8-0-6-2018-08-29" title="Permalink to this headline">¶</a></h2>
592
+ <div class="section" id="id17">
593
+ <h3>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
594
+ <ul>
595
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenMecab] add <code class="docutils literal notranslate"><span class="pre">chunked_tokenize</span></code> and <code class="docutils literal notranslate"><span class="pre">chunk_size_threshold</span></code> options.</p></li>
596
+ <li><p>[optimizer] support estimation for query family expressions.
597
+ It will generate more effective execution plan with query family expressions such as <code class="docutils literal notranslate"><span class="pre">column</span> <span class="pre">&#64;</span> <span class="pre">query</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span> <span class="pre">&#64;~</span> <span class="pre">pattern</span></code> and so on.</p></li>
598
+ <li><p>[optimizer] plug-in -&gt; built-in
599
+ It’s disabled by default for now.
600
+ We can enable it by defining <code class="docutils literal notranslate"><span class="pre">GRN_EXPR_OPTIMIZE=yes</span></code> environment variable or using <code class="docutils literal notranslate"><span class="pre">expression_rewriters</span></code> table as before.</p></li>
601
+ <li><p>Enable sequential search for enough filtered case by default.
602
+ If the current result is enough filtered, sequential search is faster than index search.
603
+ If the current result has only 1% records of all records in a table and less than 1000 records, sequential search is used even when index search is available.</p>
604
+ <p>Cullently, this optimization is applied when search by <code class="docutils literal notranslate"><span class="pre">==</span></code>, <code class="docutils literal notranslate"><span class="pre">&gt;</span></code>, <code class="docutils literal notranslate"><span class="pre">&lt;</span></code>, <code class="docutils literal notranslate"><span class="pre">&gt;=</span></code>, or <code class="docutils literal notranslate"><span class="pre">&lt;=</span></code>.</p>
605
+ <p>When a key of a table that has columns specified by the filter is <code class="docutils literal notranslate"><span class="pre">ShortText</span></code>, you must set <code class="docutils literal notranslate"><span class="pre">NormalizerAuto</span></code> to normalizer of the table to apply this optimization.</p>
606
+ <p>You can disable this feature by <code class="docutils literal notranslate"><span class="pre">GRN_TABLE_SELECT_ENOUGH_FILTERED_RATIO=0.0</span></code> environment variable.</p>
607
+ </li>
608
+ <li><p>[load] improve error message.
609
+ Table name is included.</p></li>
610
+ <li><p>[load] add <code class="docutils literal notranslate"><span class="pre">lock_table</span></code> option.
611
+ If <code class="docutils literal notranslate"><span class="pre">--lock_table</span> <span class="pre">yes</span></code> is specified, <code class="docutils literal notranslate"><span class="pre">load</span></code> locks the target table while updating columns and applying <code class="docutils literal notranslate"><span class="pre">--each</span></code>.
612
+ This option avoids <code class="docutils literal notranslate"><span class="pre">load</span></code> and <code class="docutils literal notranslate"><span class="pre">delete</span></code> conflicts but it’ll reduce load performance.</p></li>
613
+ <li><p>[vector_find] avoid to crash with unsupported modes</p></li>
614
+ </ul>
615
+ </div>
616
+ <div class="section" id="id18">
617
+ <h3>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
618
+ <ul class="simple">
619
+ <li><p>[index] fix a bug that offline index construction for text vector with <code class="docutils literal notranslate"><span class="pre">HASH_KEY</span></code>.
620
+ It creates index with invalid section ID.</p></li>
621
+ <li><p>Fix a bug that <code class="docutils literal notranslate"><span class="pre">--match_columns</span> <span class="pre">'index[0]</span> <span class="pre">||</span> <span class="pre">index[9]'</span></code> uses wrong section.</p></li>
622
+ <li><p>[highlighter] fix a wrong highlight bug
623
+ It’s caused when lexicon is hash table and keyword is less than N of N-gram.</p></li>
624
+ <li><p>[mruby] fix a bug that real error is hidden.
625
+ mruby doesn’t support error propagation by no argument raise.
626
+ <a class="reference external" href="https://github.com/mruby/mruby/issues/290">https://github.com/mruby/mruby/issues/290</a></p></li>
627
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenNgram loose]: fix a not found bug when query has only loose types.
628
+ <code class="docutils literal notranslate"><span class="pre">highlight_html()</span></code> with lexicon was also broken.</p></li>
629
+ <li><p>Fix a bug that text-&gt;number cast ignores trailing garbage.
630
+ “0garbage” should be cast error.</p></li>
631
+ <li><p>Fix an optimization bug for <code class="docutils literal notranslate"><span class="pre">reference_column</span> <span class="pre">&gt;=</span> <span class="pre">'key_value'</span></code> case</p></li>
632
+ </ul>
633
+ </div>
634
+ </div>
635
+ <div class="section" id="release-8-0-5-2018-07-29">
636
+ <span id="release-8-0-5"></span><h2>Release 8.0.5 - 2018-07-29<a class="headerlink" href="#release-8-0-5-2018-07-29" title="Permalink to this headline">¶</a></h2>
637
+ <div class="section" id="id19">
638
+ <h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
639
+ <ul class="simple">
640
+ <li><p>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Added complementary explain about similar search against Japanese documents.
641
+ [GitHub#858][Patch by Yasuhiro Horimoto]</p></li>
642
+ <li><p>[<a class="reference internal" href="reference/functions/time_classify_day_of_week.html"><span class="doc">time_classify_day_of_week</span></a>] Added a new API: <code class="docutils literal notranslate"><span class="pre">time_classify_day_of_week()</span></code>.</p></li>
643
+ <li><p>Suppressed a warning with <code class="docutils literal notranslate"><span class="pre">-fstack-protector</span></code>.
644
+ Suggested by OBATA Akio.</p></li>
645
+ <li><p>Added a new API: <code class="docutils literal notranslate"><span class="pre">time_format_iso8601()</span></code>.</p></li>
646
+ <li><p>Exported a struct <code class="docutils literal notranslate"><span class="pre">grn_raw_string</span></code>.</p></li>
647
+ <li><p>Added a new API: <code class="docutils literal notranslate"><span class="pre">grn_obj_clear_option_values()</span></code>.
648
+ It allows you to clear option values on remove (for persistent) / close (for temporary.)</p></li>
649
+ <li><p>[log] Reported index column name for error message <code class="docutils literal notranslate"><span class="pre">[ii][update][one]</span></code>.</p></li>
650
+ <li><p>[httpd] Updated bundled nginx to 1.15.2.</p></li>
651
+ <li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 17.10 (Artful Aardvark) support.
652
+ It has reached EOL at July 19, 2018.</p></li>
653
+ <li><p>[<a class="reference internal" href="install/debian.html"><span class="doc">Debian GNU/Linux</span></a>] Dropped jessie support.
654
+ Debian’s security and release team will no longer produce updates for jessie.</p></li>
655
+ </ul>
656
+ </div>
657
+ <div class="section" id="id20">
658
+ <h3>Fixes<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
659
+ <ul class="simple">
660
+ <li><p>Fixed returning wrong result after unfinished <code class="docutils literal notranslate"><span class="pre">/d/load</span></code> data by POST.</p></li>
661
+ <li><p>Fixed wrong function call around KyTea.</p></li>
662
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added a missing label for the <code class="docutils literal notranslate"><span class="pre">--force-truncate</span></code> option.</p></li>
663
+ <li><p>Fixed crash on closing of a database, when a normalizer provided by a plugin (ex. <code class="docutils literal notranslate"><span class="pre">groonga-normalizer-mysql</span></code>) is used with any option.</p></li>
664
+ <li><p>Fixed a bug that normalizer/tokenizer options may be ignored.
665
+ It’s occurred when the same object ID is reused.</p></li>
666
+ </ul>
667
+ </div>
668
+ </div>
669
+ <div class="section" id="release-8-0-4-2018-06-29">
670
+ <span id="release-8-0-4"></span><h2>Release 8.0.4 - 2018-06-29<a class="headerlink" href="#release-8-0-4-2018-06-29" title="Permalink to this headline">¶</a></h2>
671
+ <div class="section" id="id21">
672
+ <h3>Improvements<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
673
+ <ul class="simple">
674
+ <li><p>[log] Add sub error for error message <code class="docutils literal notranslate"><span class="pre">[ii][update][one]</span></code>.</p></li>
675
+ <li><p>Added a new API: <code class="docutils literal notranslate"><span class="pre">grn_highlighter_clear_keywords()</span></code>.</p></li>
676
+ <li><p>Added a new predicate: <code class="docutils literal notranslate"><span class="pre">grn_obj_is_number_family_bulk()</span></code>.</p></li>
677
+ <li><p>Added a new API: <code class="docutils literal notranslate"><span class="pre">grn_plugin_proc_get_value_mode()</span></code>.</p></li>
678
+ <li><p>[<a class="reference internal" href="reference/functions/vector_find.html"><span class="doc">vector_find</span></a>] Added a new function <code class="docutils literal notranslate"><span class="pre">vector_find()</span></code>.</p></li>
679
+ <li><p>Suppress memcpy warnings in msgpack.</p></li>
680
+ <li><p>Updated mruby from 1.0.0 to 1.4.1.</p></li>
681
+ <li><p>[doc][<a class="reference internal" href="reference/api/grn_obj.html"><span class="doc">grn_obj</span></a>] Added API reference for <code class="docutils literal notranslate"><span class="pre">grn_obj_is_index_column()</span></code>.</p></li>
682
+ <li><p>[windows] Suppress printf format warnings.</p></li>
683
+ <li><p>[windows] Suppress warning by msgpack.</p></li>
684
+ <li><p>[<a class="reference internal" href="reference/api/grn_obj.html"><span class="doc">grn_obj</span></a>][<a class="reference internal" href="reference/api/plugin.html"><span class="doc">Plugin</span></a>] Added encoding converter.
685
+ rules:</p>
686
+ <ul>
687
+ <li><p>grn_ctx::errbuf: grn_encoding</p></li>
688
+ <li><p>grn_logger_put: grn_encoding</p></li>
689
+ <li><p>mruby: UTF-8</p></li>
690
+ <li><p>path: locale</p></li>
691
+ </ul>
692
+ </li>
693
+ <li><p>[mrb] Added <code class="docutils literal notranslate"><span class="pre">LocaleOutput</span></code>.</p></li>
694
+ <li><p>[windows] Supported converting image path to grn_encoding.</p></li>
695
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenMecab] Convert error message encoding.</p></li>
696
+ <li><p>[<a class="reference internal" href="reference/window_functions/window_sum.html"><span class="doc">window_sum</span></a>] Supported dynamic column as a target column.</p></li>
697
+ <li><p>[doc][<a class="reference internal" href="reference/api/grn_obj.html"><span class="doc">grn_obj</span></a>] Added API reference for <code class="docutils literal notranslate"><span class="pre">grn_obj_is_vector_column()</span></code>.</p></li>
698
+ <li><p>[<a class="reference internal" href="reference/commands/column_create.html"><span class="doc">column_create</span></a>] Added more validations.</p>
699
+ <ul>
700
+ <li><p>1: Full text search index for vector column must have <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> flag.
701
+ (Note that TokenDelmit with <code class="docutils literal notranslate"><span class="pre">WITH_POSITION</span></code> without <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> is permitted.
702
+ It’s useful pattern for tag search.)</p></li>
703
+ <li><p>2: Full text search index for vector column must not be multi column index.
704
+ detail: <a class="reference external" href="https://github.com/groonga/groonga/commit/08e2456ba35407e3d5172f71a0200fac2a770142">https://github.com/groonga/groonga/commit/08e2456ba35407e3d5172f71a0200fac2a770142</a></p></li>
705
+ </ul>
706
+ </li>
707
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Disabled log check temporarily.
708
+ Because it’s not completed yet.</p></li>
709
+ </ul>
710
+ </div>
711
+ <div class="section" id="id22">
712
+ <h3>Fixes<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
713
+ <ul class="simple">
714
+ <li><p>[<a class="reference internal" href="reference/functions/sub_filter.html"><span class="doc">sub_filter</span></a>] Fixed too much score with a too filtered case.</p></li>
715
+ <li><p>Fixed build error if KyTea is installed.</p></li>
716
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Fixed output channel.</p></li>
717
+ <li><p>[query-log][show-condition] Maybe fixed a crash bug.</p></li>
718
+ <li><p>[highlighter][lexicon] Fixed a not highlighted bug.
719
+ The keyword wasn’t highlighted if keyword length is less than N (“N”-gram.
720
+ In many cases, it’s Bigram so “less than 2”).</p></li>
721
+ <li><p>[windows] Fixed a base path detection bug.
722
+ If system locale DLL path includes 0x5c (<code class="docutils literal notranslate"><span class="pre">\</span></code> in ASCII) such as “U+8868
723
+ CJK UNIFIED IDEOGRAPH-8868” in CP932, the base path detection is buggy.</p></li>
724
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][TokenNgram] Fixed wrong first character length.
725
+ It’s caused for “PARENTHESIZED IDEOGRAPH” characters such as
726
+ “U+3231 PARENTHESIZED IDEOGRAPH STOCK”.</p></li>
727
+ </ul>
728
+ </div>
729
+ </div>
730
+ <div class="section" id="release-8-0-3-2018-05-29">
731
+ <span id="release-8-0-3"></span><h2>Release 8.0.3 - 2018-05-29<a class="headerlink" href="#release-8-0-3-2018-05-29" title="Permalink to this headline">¶</a></h2>
732
+ <div class="section" id="id23">
733
+ <h3>Improvements<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
734
+ <ul>
735
+ <li><p>[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] Support highlight of results of
736
+ the search by <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> or <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.</p></li>
737
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Added new option for <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> that
738
+ <code class="docutils literal notranslate"><span class="pre">report_source_location</span> <span class="pre">option</span></code> .
739
+ This option used when highlighting with <code class="docutils literal notranslate"><span class="pre">highlight_html</span></code> use a lexicon.</p></li>
740
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Added new option for <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> that
741
+ <code class="docutils literal notranslate"><span class="pre">unify_middle_dot</span> <span class="pre">option</span></code>.
742
+ This option normalizes middle dot. You can search with or without <code class="docutils literal notranslate"><span class="pre">・</span></code>
743
+ (middle dot) and regardless of <code class="docutils literal notranslate"><span class="pre">・</span></code> position.</p></li>
744
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Added new option for <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> that
745
+ <code class="docutils literal notranslate"><span class="pre">unify_katakana_v_sounds</span> <span class="pre">option</span></code>.
746
+ This option normalizes <code class="docutils literal notranslate"><span class="pre">ヴァヴィヴヴェヴォ</span></code> (katakana) to <code class="docutils literal notranslate"><span class="pre">バビブベボ</span></code> (katakana).
747
+ For example, you can search <code class="docutils literal notranslate"><span class="pre">バイオリン</span></code> (violin) in <code class="docutils literal notranslate"><span class="pre">ヴァイオリン</span></code> (violin).</p></li>
748
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Added new option for <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> that
749
+ <code class="docutils literal notranslate"><span class="pre">unify_katakana_bu_sound</span> <span class="pre">option</span></code>.
750
+ This option normalizes <code class="docutils literal notranslate"><span class="pre">ヴァヴィヴゥヴェヴォ</span></code> (katakana) to <code class="docutils literal notranslate"><span class="pre">ブ</span></code> (katakana).
751
+ For example, you can search <code class="docutils literal notranslate"><span class="pre">セーブル</span></code> (katakana) and <code class="docutils literal notranslate"><span class="pre">セーヴル</span></code> in
752
+ <code class="docutils literal notranslate"><span class="pre">セーヴェル</span></code> (katakana).</p></li>
753
+ <li><p>[<a class="reference internal" href="reference/functions/sub_filter.html"><span class="doc">sub_filter</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">sub_filter</span></code> optimization
754
+ for the too filter case.
755
+ this optimize is valid when records are enough narrowed down before
756
+ <code class="docutils literal notranslate"><span class="pre">sub_filter</span></code> execution as below.</p></li>
757
+ <li><p>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Made all workers context address
758
+ to unique.
759
+ context address is <code class="docutils literal notranslate"><span class="pre">#{ID}</span></code> of below query log.</p>
760
+ <div class="line-block">
761
+ <div class="line">#{TIME_STAMP}|#{MESSAGE}</div>
762
+ <div class="line">#{TIME_STAMP}|#{ID}|&gt;#{QUERY}</div>
763
+ <div class="line">#{TIME_STAMP}|#{ID}|:#{ELAPSED_TIME} #{PROGRESS}</div>
764
+ <div class="line">#{TIME_STAMP}|#{ID}|&lt;#{ELAPSED_TIME} #{RETURN_CODE}</div>
765
+ </div>
766
+ </li>
767
+ <li><p>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Added new options that <code class="docutils literal notranslate"><span class="pre">limit</span></code>.
768
+ You can limit the number of delete records as below example.
769
+ <code class="docutils literal notranslate"><span class="pre">delete</span> <span class="pre">--table</span> <span class="pre">Users</span> <span class="pre">--filter</span> <span class="pre">'_key</span> <span class="pre">&#64;^</span> <span class="pre">&quot;b&quot;'</span> <span class="pre">--limit</span> <span class="pre">4</span></code></p></li>
770
+ <li><p>[httpd] Updated bundled nginx to 1.14.0.</p></li>
771
+ </ul>
772
+ </div>
773
+ <div class="section" id="id24">
774
+ <h3>Fixes<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
775
+ <ul class="simple">
776
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed memory leak when an error occurs
777
+ in filtered dynamic columns.</p></li>
778
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Fixed memory leak on initial dynamic
779
+ column error.</p></li>
780
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Fixed memory leak when an error
781
+ occurs in dynamic column evaluation.</p></li>
782
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Fixed a bug that the wrong <code class="docutils literal notranslate"><span class="pre">source_offset</span></code> when a
783
+ loose tokenizing such as <code class="docutils literal notranslate"><span class="pre">loose_symbol</span></code> option.</p></li>
784
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Fixed a bug that FULLWIDTH LATIN CAPITAL LETTERs
785
+ such as <code class="docutils literal notranslate"><span class="pre">U+FF21</span> <span class="pre">FULLWIDTH</span> <span class="pre">LATIN</span> <span class="pre">CAPITAL</span> <span class="pre">LETTER</span> <span class="pre">A</span></code> aren’t normalized to LATIN SMALL
786
+ LETTERs such as <code class="docutils literal notranslate"><span class="pre">U+0061</span> <span class="pre">LATIN</span> <span class="pre">SMALL</span> <span class="pre">LETTER</span> <span class="pre">A</span></code>.
787
+ If you have been used <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> , you must recreate your indexes.</p></li>
788
+ </ul>
789
+ </div>
790
+ </div>
791
+ <div class="section" id="release-8-0-2-2018-04-29">
792
+ <span id="release-8-0-2"></span><h2>Release 8.0.2 - 2018-04-29<a class="headerlink" href="#release-8-0-2-2018-04-29" title="Permalink to this headline">¶</a></h2>
793
+ <div class="section" id="id25">
794
+ <h3>Improvements<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
795
+ <ul>
796
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>][<a class="reference internal" href="reference/executables/grndb.html#grndb-force-truncate"><span class="std std-ref">--force-truncate</span></a>] Improved
797
+ <code class="docutils literal notranslate"><span class="pre">grndb</span> <span class="pre">recover</span> <span class="pre">--force-truncate</span></code> option that it can be truncated even if
798
+ locks are left on the table.</p></li>
799
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added <code class="docutils literal notranslate"><span class="pre">sort_keys</span></code> option.</p></li>
800
+ <li><p>Added a new function <code class="docutils literal notranslate"><span class="pre">time_format()</span></code>.
801
+ You can specify time format against a column of <code class="docutils literal notranslate"><span class="pre">Time</span></code> type.
802
+ You can specify with use format of <code class="docutils literal notranslate"><span class="pre">strftime</span></code> .</p></li>
803
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Support new tokenizer <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.
804
+ You can change its behavior dynamically via options.
805
+ Here is a list of available options:</p>
806
+ <blockquote>
807
+ <div><ul class="simple">
808
+ <li><p><code class="docutils literal notranslate"><span class="pre">n</span></code> : “N” of Ngram. For example, “3” for trigram.</p></li>
809
+ <li><p><code class="docutils literal notranslate"><span class="pre">loose_symbol</span></code> : Tokenize keywords including symbols, to be searched
810
+ by both queries with/without symbols. For example, a keyword
811
+ “090-1111-2222” will be found by any of “09011112222”, “090”, “1111”,
812
+ “2222” and “090-1111-2222”.</p></li>
813
+ <li><p><code class="docutils literal notranslate"><span class="pre">loose_blank</span></code> : Tokenize keywords including blanks, to be searched
814
+ by both queries with/without blanks. For example, a keyword
815
+ “090 1111 2222” will be found by any of “09011112222”, “090”, “1111”,
816
+ “2222” and “090 1111 2222”.</p></li>
817
+ <li><p><code class="docutils literal notranslate"><span class="pre">remove_blank</span></code> : Tokenize keywords including blanks, to be searched
818
+ by queries without blanks. For example, a keyword “090 1111 2222” will
819
+ be found by any of “09011112222”, “090”, “1111” or “2222”. Note that
820
+ the keyword won’t be found by a query including blanks like
821
+ “090 1111 2222”.</p></li>
822
+ </ul>
823
+ </div></blockquote>
824
+ </li>
825
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Support new normalizer “NormalizerNFKC100” based on Unicode NFKC (Normalization Form Compatibility Composition) for Unicode 10.0.</p></li>
826
+ <li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">Normalizers</span></a>] Support options for “NormalizerNFKC51” and “NormalizerNFKC100” normalizers.
827
+ You can change their behavior dynamically.
828
+ Here is a list of available options:</p>
829
+ <blockquote>
830
+ <div><ul class="simple">
831
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_kana</span></code> : Same pronounced characters in all of full-width
832
+ Hiragana, full-width Katakana and half-width Katakana are regarded as
833
+ the same character.</p></li>
834
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_kana_case</span></code> : Large and small versions of same letters in all of
835
+ full-width Hiragana, full-width Katakana and half-width Katakana are
836
+ regarded as the same character.</p></li>
837
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_kana_voiced_sound_mark</span></code> : Letters with/without voiced sound
838
+ mark and semi voiced sound mark in all of full-width Hiragana,
839
+ full-width Katakana and half-width Katakana are regarded as the same
840
+ character.</p></li>
841
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_hyphen</span></code> : The characters like hyphen are regarded as the hyphen.</p></li>
842
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_prolonged_sound_mark</span></code> : The characters like prolonged sound mark
843
+ are regarded as the prolonged sound mark.</p></li>
844
+ <li><p><code class="docutils literal notranslate"><span class="pre">unify_hyphen_and_prolonged_sound_mark</span></code> : The characters like hyphen
845
+ and prolonged sound mark are regarded as the hyphen.</p></li>
846
+ </ul>
847
+ </div></blockquote>
848
+ </li>
849
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Support output of tokenizer’s options and
850
+ normalizer’s options. Groonga 8.0.1 and earlier versions cannot import dump
851
+ including options for tokenizers or normalizers generated by Groonga 8.0.2
852
+ or later, and it will occurs error due to unsupported information.</p></li>
853
+ <li><p>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] Support output of tokenizer’s options and
854
+ normalizer’s options. Groonga 8.0.1 and earlier versions cannot import schema
855
+ including options for tokenizers or normalizers generated by Groonga 8.0.2
856
+ or later, and it will occurs error due to unsupported information.</p></li>
857
+ <li><p>Supported Ubuntu 18.04 (Bionic Beaver)</p></li>
858
+ </ul>
859
+ </div>
860
+ <div class="section" id="id26">
861
+ <h3>Fixes<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
862
+ <ul class="simple">
863
+ <li><p>Fixed a bug that unexpected record is matched with space only query.
864
+ [groonga-dev,04609][Reported by satouyuzh]</p></li>
865
+ <li><p>Fixed a bug that wrong scorer may be used.
866
+ It’s caused when multiple scorers are used as below.
867
+ <code class="docutils literal notranslate"><span class="pre">--match_columns</span> <span class="pre">'title</span> <span class="pre">||</span> <span class="pre">scorer_tf_at_most(content,</span> <span class="pre">2.0)'</span></code>.</p></li>
868
+ <li><p>Fixed a bug that it may also take so much time to change “thread_limit”.</p></li>
869
+ </ul>
870
+ </div>
871
+ <div class="section" id="id27">
872
+ <h3>Thanks<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
873
+ <ul class="simple">
874
+ <li><p>satouyuzh</p></li>
875
+ </ul>
876
+ </div>
877
+ </div>
878
+ <div class="section" id="release-8-0-1-2018-03-29">
879
+ <span id="release-8-0-1"></span><h2>Release 8.0.1 - 2018-03-29<a class="headerlink" href="#release-8-0-1-2018-03-29" title="Permalink to this headline">¶</a></h2>
880
+ <div class="section" id="id28">
881
+ <h3>Improvements<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
882
+ <ul>
883
+ <li><p>[<a class="reference internal" href="reference/log.html"><span class="doc">Log</span></a>] Show <code class="docutils literal notranslate"><span class="pre">filter</span></code> conditions in query log.
884
+ It’s disabled by default. To enable it, you need to set an environment
885
+ variable <code class="docutils literal notranslate"><span class="pre">GRN_QUERY_LOG_SHOW_CONDITION=yes</span></code>.</p></li>
886
+ <li><p>Install <code class="docutils literal notranslate"><span class="pre">*.pdb</span></code> into the directory where <code class="docutils literal notranslate"><span class="pre">*.dll</span></code> and <code class="docutils literal notranslate"><span class="pre">*.exe</span></code>
887
+ are installed.</p></li>
888
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Support <code class="docutils literal notranslate"><span class="pre">filtered</span></code>
889
+ stage dynamic columns.</p></li>
890
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>]
891
+ [<a class="reference internal" href="reference/commands/logical_count.html#logical-count-post-filter"><span class="std std-ref">post_filter</span></a>] Added a new filter timing.
892
+ It’s executed after <code class="docutils literal notranslate"><span class="pre">filtered</span></code> stage columns are generated.</p></li>
893
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>]
894
+ [<a class="reference internal" href="reference/commands/logical_select.html#logical-select-post-filter"><span class="std std-ref">post_filter</span></a>] Added a new filter timing.
895
+ It’s executed after <code class="docutils literal notranslate"><span class="pre">filtered</span></code> stage columns are generated.</p></li>
896
+ <li><p>Support LZ4/Zstd/zlib compression for vector data.</p></li>
897
+ <li><p>Support alias to accessor such as <code class="docutils literal notranslate"><span class="pre">_key</span></code>.</p></li>
898
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Optimize
899
+ window function for large result set.
900
+ If we find enough matched records, we don’t apply window function
901
+ to the remaining windows.</p>
902
+ <p>TODO: Disable this optimization for small result set if its overhead
903
+ is not negligible. The overhead is not evaluated yet.</p>
904
+ </li>
905
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added <code class="docutils literal notranslate"><span class="pre">match_escalation</span></code> parameter.
906
+ You can force to enable match escalation by <code class="docutils literal notranslate"><span class="pre">--match_escalation</span> <span class="pre">yes</span></code>.
907
+ It’s stronger than <code class="docutils literal notranslate"><span class="pre">--match_escalation_threshold</span> <span class="pre">99999....999</span></code>
908
+ because <code class="docutils literal notranslate"><span class="pre">--match_escalation</span> <span class="pre">yes</span></code> also works with
909
+ <code class="docutils literal notranslate"><span class="pre">SOME_CONDITIONS</span> <span class="pre">&amp;&amp;</span> <span class="pre">column</span> <span class="pre">&#64;</span> <span class="pre">'query'</span></code>.
910
+ <code class="docutils literal notranslate"><span class="pre">--match_escalation_threshold</span></code> isn’t used in this case.</p>
911
+ <p>The default is <code class="docutils literal notranslate"><span class="pre">--match_escalation</span> <span class="pre">auto</span></code>. It doesn’t change the
912
+ current behavior.</p>
913
+ <p>You can disable match escalation by <code class="docutils literal notranslate"><span class="pre">--match_escalation</span> <span class="pre">no</span></code>.
914
+ It’s the same as <code class="docutils literal notranslate"><span class="pre">--match_escalation_threshold</span> <span class="pre">-1</span></code>.</p>
915
+ </li>
916
+ <li><p>[httpd] Updated bundled nginx to 1.13.10.</p></li>
917
+ </ul>
918
+ </div>
919
+ <div class="section" id="id29">
920
+ <h3>Fixes<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
921
+ <ul class="simple">
922
+ <li><p>Fixed memory leak that occurs when a prefix query doesn’t match any token.
923
+ [GitHub#820][Patch by Naoya Murakami]</p></li>
924
+ <li><p>Fixed a bug that a cache for different databases is used when
925
+ multiple databases are opened in the same process.</p></li>
926
+ <li><p>Fixed a bug that a wrong index is constructed.
927
+ This occurs only when the source of a column is a vector column and
928
+ <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> isn’t specified.</p></li>
929
+ <li><p>Fixed a bug that a constant value can overflow or underflow in
930
+ comparison (&gt;,&gt;=,&lt;,&lt;=,==,!=).</p></li>
931
+ </ul>
932
+ </div>
933
+ <div class="section" id="id30">
934
+ <h3>Thanks<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
935
+ <ul class="simple">
936
+ <li><p>Naoya Murakami</p></li>
937
+ </ul>
938
+ </div>
939
+ </div>
940
+ <div class="section" id="release-8-0-0-2018-02-09">
941
+ <span id="release-8-0-0"></span><h2>Release 8.0.0 - 2018-02-09<a class="headerlink" href="#release-8-0-0-2018-02-09" title="Permalink to this headline">¶</a></h2>
942
+ <p>This is a major version up! But It keeps backward compatibility.
943
+ You can upgrade to 8.0.0 without rebuilding database.</p>
944
+ <div class="section" id="id31">
945
+ <h3>Improvements<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
946
+ <ul>
947
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added <code class="docutils literal notranslate"><span class="pre">--drilldown_adjuster</span></code> and
948
+ <code class="docutils literal notranslate"><span class="pre">--drilldowns[LABEL].adjuster</span></code>.
949
+ You can adjust score against result of drilldown.</p></li>
950
+ <li><p>[<a class="reference internal" href="reference/indexing.html#online-index-construction"><span class="std std-ref">Online index construction</span></a>] Changed environment variable name
951
+ <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_ENABLE</span></code> to <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD</span></code>.</p>
952
+ <p><code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD=0</span> <span class="pre">==</span> <span class="pre">GRN_II_REDUCE_EXPIRE_ENABLE=no</span></code>.
953
+ <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD=-1</span></code> uses
954
+ <code class="docutils literal notranslate"><span class="pre">ii-&gt;chunk-&gt;max_map_seg</span> <span class="pre">/</span> <span class="pre">2</span></code> as threshold.
955
+ <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD</span> <span class="pre">&gt;</span> <span class="pre">0</span></code> uses
956
+ <code class="docutils literal notranslate"><span class="pre">MIN(ii-&gt;chunk-&gt;max_map_seg</span> <span class="pre">/</span> <span class="pre">2,</span> <span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD)</span></code>
957
+ as threshold.
958
+ <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD=32</span></code> is the default.</p>
959
+ </li>
960
+ <li><p>[<a class="reference internal" href="reference/functions/between.html"><span class="doc">between</span></a>] Accept <code class="docutils literal notranslate"><span class="pre">between()</span></code> without borders.
961
+ If the number of arguments passed to <code class="docutils literal notranslate"><span class="pre">between()</span></code> is 3, the 2nd and 3rd
962
+ arguments are handled as the inclusive edges. [GitHub#685]</p></li>
963
+ </ul>
964
+ </div>
965
+ <div class="section" id="id32">
966
+ <h3>Fixes<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
967
+ <ul class="simple">
968
+ <li><p>Fixed a memory leak for normal hash table.
969
+ [GitHub:mroonga/mroonga#190][Reported by fuku1]</p></li>
970
+ <li><p>Fix a memory leak for normal array.</p></li>
971
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Stopped to cache when <code class="docutils literal notranslate"><span class="pre">output_columns</span></code>
972
+ uses not stable function.</p></li>
973
+ <li><p>[Windows] Fixed wrong value report on <code class="docutils literal notranslate"><span class="pre">WSASend</span></code> error.</p></li>
974
+ </ul>
975
+ </div>
976
+ <div class="section" id="id33">
977
+ <h3>Thanks<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
978
+ <ul class="simple">
979
+ <li><p>fuku1</p></li>
980
+ </ul>
981
+ </div>
982
+ </div>
64
983
  <div class="section" id="release-7-1-1-2018-01-29">
65
984
  <span id="release-7-1-1"></span><h2>Release 7.1.1 - 2018-01-29<a class="headerlink" href="#release-7-1-1-2018-01-29" title="Permalink to this headline">¶</a></h2>
66
- <div class="section" id="improvements">
67
- <h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
985
+ <div class="section" id="id34">
986
+ <h3>Improvements<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
68
987
  <ul>
69
- <li><p class="first">Added quorum match support.
988
+ <li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 17.04 (Zesty Zapus) support.
989
+ It has reached EOL at Jan 13, 2018.</p></li>
990
+ <li><p>Added quorum match support.
70
991
  You can use quorum match in both script syntax and query syntax.
71
992
  [groonga-talk,385][Suggested by 付超群]</p>
72
993
  <p>TODO: Add documents for quorum match syntax and link to them.</p>
73
994
  </li>
74
- <li><p class="first">Added custom similarity threshold support in script syntax.
995
+ <li><p>Added custom similarity threshold support in script syntax.
75
996
  You can use custom similarity threshold in script syntax.</p>
76
997
  <p>TODO: Add document for the syntax and link to it.</p>
77
998
  </li>
78
- <li><p class="first">[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>][<a class="reference internal" href="reference/executables/grndb.html#grndb-force-lock-clear"><span class="std std-ref">--force-lock-clear</span></a>]
79
- Added <code class="docutils literal"><span class="pre">--force-lock-clear</span></code> option. With this option, <code class="docutils literal"><span class="pre">grndb</span></code>
999
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>][<a class="reference internal" href="reference/executables/grndb.html#grndb-force-lock-clear"><span class="std std-ref">--force-lock-clear</span></a>]
1000
+ Added <code class="docutils literal notranslate"><span class="pre">--force-lock-clear</span></code> option. With this option, <code class="docutils literal notranslate"><span class="pre">grndb</span></code>
80
1001
  forces to clear locks of database, tables and data columns. You can
81
1002
  use your database again even if locks are remained in database,
82
1003
  tables and data columns.</p>
@@ -84,776 +1005,762 @@ tables and data columns.</p>
84
1005
  database is broken, your database is still broken. This option just
85
1006
  ignores locks.</p>
86
1007
  </li>
87
- <li><p class="first">[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Added surrogate pairs support in
88
- escape syntax. For example, <code class="docutils literal"><span class="pre">\uD83C\uDF7A</span></code> is processed as <code class="docutils literal"><span class="pre">🍺</span></code>.</p>
89
- </li>
90
- <li><p class="first">[Windows] Changed to use sparse file on Windows. It reduces disk
91
- space and there are no performance demerit.</p>
92
- </li>
93
- <li><p class="first">[<a class="reference internal" href="reference/indexing.html#online-index-construction"><span class="std std-ref">Online index construction</span></a>] Added
94
- <code class="docutils literal"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD</span></code> environment variable to control
95
- when memory maps are expired in index column. It's <code class="docutils literal"><span class="pre">-1</span></code> by
1008
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Added surrogate pairs support in
1009
+ escape syntax. For example, <code class="docutils literal notranslate"><span class="pre">\uD83C\uDF7A</span></code> is processed as <code class="docutils literal notranslate"><span class="pre">🍺</span></code>.</p></li>
1010
+ <li><p>[Windows] Changed to use sparse file on Windows. It reduces disk
1011
+ space and there are no performance demerit.</p></li>
1012
+ <li><p>[<a class="reference internal" href="reference/indexing.html#online-index-construction"><span class="std std-ref">Online index construction</span></a>] Added
1013
+ <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD</span></code> environment variable to control
1014
+ when memory maps are expired in index column. It’s <code class="docutils literal notranslate"><span class="pre">-1</span></code> by
96
1015
  default. It means that expire timing is depends on index column
97
1016
  size. If index column is smaller, expire timing is more. If index
98
1017
  column is larger, expire timing is less.</p>
99
- <p>You can use the previous behavior by <code class="docutils literal"><span class="pre">0</span></code>. It means that Groonga
1018
+ <p>You can use the previous behavior by <code class="docutils literal notranslate"><span class="pre">0</span></code>. It means that Groonga
100
1019
  always tries to expire.</p>
101
1020
  </li>
102
- <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>]
1021
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>]
103
1022
  [<a class="reference internal" href="reference/commands/logical_range_filter.html#logical-range-filter-post-filter"><span class="std std-ref">post_filter</span></a>] Added a new filter timing.
104
- It's executed after <code class="docutils literal"><span class="pre">filtered</span></code> stage generated columns are generated.</p>
105
- </li>
1023
+ Its executed after <code class="docutils literal notranslate"><span class="pre">filtered</span></code> stage generated columns are generated.</p></li>
106
1024
  </ul>
107
1025
  </div>
108
- <div class="section" id="fixes">
109
- <h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
1026
+ <div class="section" id="id35">
1027
+ <h3>Fixes<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
110
1028
  <ul class="simple">
111
- <li>Reduced resource usage for creating index for reference vector.
112
- [GitHub#806][Reported by Naoya Murakami]</li>
113
- <li>[<a class="reference internal" href="reference/commands/table_create.html"><span class="doc">table_create</span></a>] Fixed a bug that a table
114
- is created even when <code class="docutils literal"><span class="pre">token_filters</span></code> is invalid.
115
- [GitHub#266]</li>
1029
+ <li><p>Reduced resource usage for creating index for reference vector.
1030
+ [GitHub#806][Reported by Naoya Murakami]</p></li>
1031
+ <li><p>[<a class="reference internal" href="reference/commands/table_create.html"><span class="doc">table_create</span></a>] Fixed a bug that a table
1032
+ is created even when <code class="docutils literal notranslate"><span class="pre">token_filters</span></code> is invalid.
1033
+ [GitHub#266]</p></li>
116
1034
  </ul>
117
1035
  </div>
118
- <div class="section" id="thanks">
119
- <h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
1036
+ <div class="section" id="id36">
1037
+ <h3>Thanks<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
120
1038
  <ul class="simple">
121
- <li>付超群</li>
122
- <li>Naoya Murakami</li>
1039
+ <li><p>付超群</p></li>
1040
+ <li><p>Naoya Murakami</p></li>
123
1041
  </ul>
124
1042
  </div>
125
1043
  </div>
126
1044
  <div class="section" id="release-7-1-0-2017-12-29">
127
1045
  <span id="release-7-1-0"></span><h2>Release 7.1.0 - 2017-12-29<a class="headerlink" href="#release-7-1-0-2017-12-29" title="Permalink to this headline">¶</a></h2>
128
- <div class="section" id="id1">
129
- <h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
1046
+ <div class="section" id="id37">
1047
+ <h3>Improvements<a class="headerlink" href="#id37" title="Permalink to this headline">¶</a></h3>
130
1048
  <ul>
131
- <li><p class="first">[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Improved the <code class="docutils literal"><span class="pre">load</span></code>'s
1049
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Improved the <code class="docutils literal notranslate"><span class="pre">load</span></code>’s
132
1050
  query-log format.
133
- Added detail below items in the <code class="docutils literal"><span class="pre">load</span></code>'s query-log.</p>
1051
+ Added detail below items in the <code class="docutils literal notranslate"><span class="pre">load</span></code>’s query-log.</p>
134
1052
  <blockquote>
135
1053
  <div><ul class="simple">
136
- <li>outputs number of loaded records.</li>
137
- <li>outputs number of error records and columns.</li>
138
- <li>outputs number of total records.</li>
1054
+ <li><p>outputs number of loaded records.</p></li>
1055
+ <li><p>outputs number of error records and columns.</p></li>
1056
+ <li><p>outputs number of total records.</p></li>
139
1057
  </ul>
140
1058
  </div></blockquote>
141
1059
  </li>
142
- <li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Improved the
143
- <code class="docutils literal"><span class="pre">logical_count</span></code>'s query-log format.
144
- Added detail below items in the <code class="docutils literal"><span class="pre">logical_count</span></code>'s query-log.</p>
1060
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Improved the
1061
+ <code class="docutils literal notranslate"><span class="pre">logical_count</span></code>’s query-log format.
1062
+ Added detail below items in the <code class="docutils literal notranslate"><span class="pre">logical_count</span></code>’s query-log.</p>
145
1063
  <blockquote>
146
1064
  <div><ul class="simple">
147
- <li>outputs number of count.</li>
1065
+ <li><p>outputs number of count.</p></li>
148
1066
  </ul>
149
1067
  </div></blockquote>
150
1068
  </li>
151
- <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Improve the
152
- <code class="docutils literal"><span class="pre">logical_select</span></code>'s query-log format.
153
- Added detail below items in the <code class="docutils literal"><span class="pre">logical_select</span></code>'s query-log.</p>
1069
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Improve the
1070
+ <code class="docutils literal notranslate"><span class="pre">logical_select</span></code>’s query-log format.
1071
+ Added detail below items in the <code class="docutils literal notranslate"><span class="pre">logical_select</span></code>’s query-log.</p>
154
1072
  <blockquote>
155
1073
  <div><ul class="simple">
156
- <li>log N outputs.</li>
157
- <li>outputs plain drilldown.</li>
158
- <li>outputs labeled drilldown.</li>
159
- <li>outputs selected in each shard.</li>
160
- <li>use &quot;[...]&quot; for target information.</li>
1074
+ <li><p>log N outputs.</p></li>
1075
+ <li><p>outputs plain drilldown.</p></li>
1076
+ <li><p>outputs labeled drilldown.</p></li>
1077
+ <li><p>outputs selected in each shard.</p></li>
1078
+ <li><p>use [] for target information.</p></li>
161
1079
  </ul>
162
1080
  </div></blockquote>
163
1081
  </li>
164
- <li><p class="first">[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Improved the <code class="docutils literal"><span class="pre">delete</span></code>'s
1082
+ <li><p>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Improved the <code class="docutils literal notranslate"><span class="pre">delete</span></code>’s
165
1083
  query-log format.
166
- Added detail below items in the <code class="docutils literal"><span class="pre">delete</span></code>'s query-log.</p>
1084
+ Added detail below items in the <code class="docutils literal notranslate"><span class="pre">delete</span></code>’s query-log.</p>
167
1085
  <blockquote>
168
1086
  <div><ul class="simple">
169
- <li>outputs number of deleted and error records.</li>
170
- <li>outputs number of rest number of records.</li>
1087
+ <li><p>outputs number of deleted and error records.</p></li>
1088
+ <li><p>outputs number of rest number of records.</p></li>
171
1089
  </ul>
172
1090
  </div></blockquote>
173
1091
  </li>
174
- <li><p class="first">[<a class="reference internal" href="reference/executables/groonga-server-http.html"><span class="doc">Groonga HTTP server</span></a>] The server
175
- executed by <code class="docutils literal"><span class="pre">groonga</span> <span class="pre">-s</span></code> ensure stopping by C-c.</p>
176
- </li>
177
- <li><p class="first">Used <code class="docutils literal"><span class="pre">NaN</span></code> and <code class="docutils literal"><span class="pre">Infinity</span></code>, <code class="docutils literal"><span class="pre">-Infinity</span></code> instead of Lisp
178
- representations(<code class="docutils literal"><span class="pre">#&lt;nan&gt;</span></code> and <code class="docutils literal"><span class="pre">#i1/0</span></code>, <code class="docutils literal"><span class="pre">#-i1/0</span></code>).</p>
179
- </li>
180
- <li><p class="first">Supported vector for drilldown calc target.</p>
181
- </li>
182
- <li><p class="first">Partially supported keyword extraction from regexp search.
183
- It enables <code class="docutils literal"><span class="pre">highlight_html</span></code> and <code class="docutils literal"><span class="pre">snippet_html</span></code> for regexp search.
184
- [GitHub#787][Reported by takagi01]</p>
185
- </li>
186
- <li><p class="first">[bulk] Reduced the number of <code class="docutils literal"><span class="pre">realloc()</span></code>.
187
- <code class="docutils literal"><span class="pre">grn_bulk_*()</span></code> API supports it.</p>
1092
+ <li><p>[<a class="reference internal" href="reference/executables/groonga-server-http.html"><span class="doc">Groonga HTTP server</span></a>] The server
1093
+ executed by <code class="docutils literal notranslate"><span class="pre">groonga</span> <span class="pre">-s</span></code> ensure stopping by C-c.</p></li>
1094
+ <li><p>Used <code class="docutils literal notranslate"><span class="pre">NaN</span></code> and <code class="docutils literal notranslate"><span class="pre">Infinity</span></code>, <code class="docutils literal notranslate"><span class="pre">-Infinity</span></code> instead of Lisp
1095
+ representations(<code class="docutils literal notranslate"><span class="pre">#&lt;nan&gt;</span></code> and <code class="docutils literal notranslate"><span class="pre">#i1/0</span></code>, <code class="docutils literal notranslate"><span class="pre">#-i1/0</span></code>).</p></li>
1096
+ <li><p>Supported vector for drilldown calc target.</p></li>
1097
+ <li><p>Partially supported keyword extraction from regexp search.
1098
+ It enables <code class="docutils literal notranslate"><span class="pre">highlight_html</span></code> and <code class="docutils literal notranslate"><span class="pre">snippet_html</span></code> for regexp search.
1099
+ [GitHub#787][Reported by takagi01]</p></li>
1100
+ <li><p>[bulk] Reduced the number of <code class="docutils literal notranslate"><span class="pre">realloc()</span></code>.
1101
+ <code class="docutils literal notranslate"><span class="pre">grn_bulk_*()</span></code> API supports it.</p>
188
1102
  <p>It improves performance for large output case on Windows.
189
1103
  For example, it causes 100x faster for 100MB over output.</p>
190
- <p>Because <code class="docutils literal"><span class="pre">realloc()</span></code> is heavy on Windows.</p>
191
- </li>
192
- <li><p class="first">Enabled <code class="docutils literal"><span class="pre">GRN_II_OVERLAP_TOKEN_SKIP_ENABLE</span></code> only when its value is &quot;yes&quot;.</p>
193
- </li>
194
- <li><p class="first">Deprecated <code class="docutils literal"><span class="pre">GRN_NGRAM_TOKENIZER_REMOVE_BLANK_DISABLE</span></code>.
195
- Use <code class="docutils literal"><span class="pre">GRN_NGRAM_TOKENIZER_REMOVE_BLANK_ENABLE=no</span></code> instead.</p>
196
- </li>
197
- <li><p class="first">Added new function <code class="docutils literal"><span class="pre">index_column_source_records</span></code>.
198
- It gets source records of index column.[Patch by Naoya Murakami]</p>
199
- </li>
200
- <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported negative &quot;offset&quot; for &quot;offset + size - limit&quot; &gt;= 0</p>
201
- </li>
202
- <li><p class="first">Added <code class="docutils literal"><span class="pre">grn_column_cache</span></code>.
203
- It'll improve performance for getter of fixed size column value.</p>
204
- </li>
205
- <li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added <code class="docutils literal"><span class="pre">--listen-backlog</span> <span class="pre">option</span></code>.
206
- You can customize <code class="docutils literal"><span class="pre">listen(2)</span></code>'s backlog by this option.</p>
207
- </li>
208
- <li><p class="first">[httpd] Updated bundled nginx to 1.13.8.</p>
209
- </li>
1104
+ <p>Because <code class="docutils literal notranslate"><span class="pre">realloc()</span></code> is heavy on Windows.</p>
1105
+ </li>
1106
+ <li><p>Enabled <code class="docutils literal notranslate"><span class="pre">GRN_II_OVERLAP_TOKEN_SKIP_ENABLE</span></code> only when its value is yes”.</p></li>
1107
+ <li><p>Deprecated <code class="docutils literal notranslate"><span class="pre">GRN_NGRAM_TOKENIZER_REMOVE_BLANK_DISABLE</span></code>.
1108
+ Use <code class="docutils literal notranslate"><span class="pre">GRN_NGRAM_TOKENIZER_REMOVE_BLANK_ENABLE=no</span></code> instead.</p></li>
1109
+ <li><p>Added new function <code class="docutils literal notranslate"><span class="pre">index_column_source_records</span></code>.
1110
+ It gets source records of index column.[Patch by Naoya Murakami]</p></li>
1111
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported negative “offset” for “offset + size - limit” &gt;= 0</p></li>
1112
+ <li><p>Added <code class="docutils literal notranslate"><span class="pre">grn_column_cache</span></code>.
1113
+ It’ll improve performance for getter of fixed size column value.</p></li>
1114
+ <li><p>[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added <code class="docutils literal notranslate"><span class="pre">--listen-backlog</span> <span class="pre">option</span></code>.
1115
+ You can customize <code class="docutils literal notranslate"><span class="pre">listen(2)</span></code>’s backlog by this option.</p></li>
1116
+ <li><p>[httpd] Updated bundled nginx to 1.13.8.</p></li>
210
1117
  </ul>
211
1118
  </div>
212
- <div class="section" id="id2">
213
- <h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
1119
+ <div class="section" id="id38">
1120
+ <h3>Fixes<a class="headerlink" href="#id38" title="Permalink to this headline">¶</a></h3>
214
1121
  <ul>
215
- <li><p class="first">Fixed a memory leak in <code class="docutils literal"><span class="pre">highlight_full</span></code></p>
216
- </li>
217
- <li><p class="first">Fixed a crash bug by early unlink
218
- It's not caused by instruction in <code class="docutils literal"><span class="pre">grn_expr_parse()</span></code> but it's caused when
1122
+ <li><p>Fixed a memory leak in <code class="docutils literal notranslate"><span class="pre">highlight_full</span></code></p></li>
1123
+ <li><p>Fixed a crash bug by early unlink
1124
+ It’s not caused by instruction in <code class="docutils literal notranslate"><span class="pre">grn_expr_parse()</span></code> but it’s caused when
219
1125
  libgroonga user such as Mroonga uses the following instructions:</p>
220
1126
  <blockquote>
221
1127
  <div><ol class="arabic simple">
222
- <li><code class="docutils literal"><span class="pre">grn_expr_append_const(&quot;_id&quot;)</span></code></li>
223
- <li><code class="docutils literal"><span class="pre">grn_expr_append_op(GRN_OP_GET_VALUE)</span></code></li>
1128
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_expr_append_const(&quot;_id&quot;)</span></code></p></li>
1129
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_expr_append_op(GRN_OP_GET_VALUE)</span></code></p></li>
224
1130
  </ol>
225
1131
  </div></blockquote>
226
1132
  </li>
227
1133
  </ul>
228
1134
  </div>
229
- <div class="section" id="id3">
230
- <h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
1135
+ <div class="section" id="id39">
1136
+ <h3>Thanks<a class="headerlink" href="#id39" title="Permalink to this headline">¶</a></h3>
231
1137
  <ul class="simple">
232
- <li>takagi01</li>
233
- <li>Naoya Murakami</li>
1138
+ <li><p>takagi01</p></li>
1139
+ <li><p>Naoya Murakami</p></li>
234
1140
  </ul>
235
1141
  </div>
236
1142
  </div>
237
1143
  <div class="section" id="release-7-0-9-2017-11-29">
238
1144
  <span id="release-7-0-9"></span><h2>Release 7.0.9 - 2017-11-29<a class="headerlink" href="#release-7-0-9-2017-11-29" title="Permalink to this headline">¶</a></h2>
239
- <div class="section" id="id4">
240
- <h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
1145
+ <div class="section" id="id40">
1146
+ <h3>Improvements<a class="headerlink" href="#id40" title="Permalink to this headline">¶</a></h3>
241
1147
  <ul class="simple">
242
- <li>Supported newer version of Apache Arrow. In this release, 0.8.0 or
243
- later is required for Apache Arrow support.</li>
244
- <li>[sharding] Added new API for dynamic columns.<ul>
245
- <li>Groonga::LabeledArguments</li>
246
- </ul>
247
- </li>
248
- <li>[sharding] Added convenient <code class="docutils literal"><span class="pre">Table#select_all</span></code> method.</li>
249
- <li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported dynamic
250
- columns. Note that <code class="docutils literal"><span class="pre">initial</span></code> and <code class="docutils literal"><span class="pre">filtered</span></code> stage are only
251
- supported.</li>
252
- <li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added documentation
253
- about <code class="docutils literal"><span class="pre">cache</span></code> parameter and dynamic columns.</li>
254
- <li>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported dynamic
255
- columns. Note that <code class="docutils literal"><span class="pre">initial</span></code> stage is only supported.</li>
256
- <li>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Added documentation about
257
- named parameters.</li>
258
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported <code class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">_key</span></code>
259
- without index.</li>
260
- <li>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] Supported to specify more
1148
+ <li><p>Supported newer version of Apache Arrow. In this release, 0.8.0 or
1149
+ later is required for Apache Arrow support.</p></li>
1150
+ <li><p>[sharding] Added new API for dynamic columns.</p>
1151
+ <ul>
1152
+ <li><p>Groonga::LabeledArguments</p></li>
1153
+ </ul>
1154
+ </li>
1155
+ <li><p>[sharding] Added convenient <code class="docutils literal notranslate"><span class="pre">Table#select_all</span></code> method.</p></li>
1156
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported dynamic
1157
+ columns. Note that <code class="docutils literal notranslate"><span class="pre">initial</span></code> and <code class="docutils literal notranslate"><span class="pre">filtered</span></code> stage are only
1158
+ supported.</p></li>
1159
+ <li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added documentation
1160
+ about <code class="docutils literal notranslate"><span class="pre">cache</span></code> parameter and dynamic columns.</p></li>
1161
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported dynamic
1162
+ columns. Note that <code class="docutils literal notranslate"><span class="pre">initial</span></code> stage is only supported.</p></li>
1163
+ <li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Added documentation about
1164
+ named parameters.</p></li>
1165
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">--match_columns</span> <span class="pre">_key</span></code>
1166
+ without index.</p></li>
1167
+ <li><p>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] Supported to specify more
261
1168
  than 126 values. [GitHub#760] [GitHub#781] [groonga-dev,04449]
262
- [Reported by Murata Satoshi]</li>
263
- <li>[httpd] Updated bundled nginx to 1.13.7.</li>
1169
+ [Reported by Murata Satoshi]</p></li>
1170
+ <li><p>[httpd] Updated bundled nginx to 1.13.7.</p></li>
264
1171
  </ul>
265
1172
  </div>
266
- <div class="section" id="id5">
267
- <h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
1173
+ <div class="section" id="id41">
1174
+ <h3>Fixes<a class="headerlink" href="#id41" title="Permalink to this headline">¶</a></h3>
268
1175
  <ul class="simple">
269
- <li>[httpd] Fixed build error when old Groonga is already installed.
270
- [GitHub#775] [Reported by myamanishi3]</li>
271
- <li>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] Fixed a bug that
272
- <code class="docutils literal"><span class="pre">in_values</span></code> with too many arguments can cause a crash. This bug is
273
- found during supporting more than 126 values. [GitHub#780]</li>
274
- <li>[cmake] Fixed LZ4 and MessagePack detection. [Reported by Sergei
275
- Golubchik]</li>
276
- <li>[<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>] Fixed a bug that offline index
1176
+ <li><p>[httpd] Fixed build error when old Groonga is already installed.
1177
+ [GitHub#775] [Reported by myamanishi3]</p></li>
1178
+ <li><p>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] Fixed a bug that
1179
+ <code class="docutils literal notranslate"><span class="pre">in_values</span></code> with too many arguments can cause a crash. This bug is
1180
+ found during supporting more than 126 values. [GitHub#780]</p></li>
1181
+ <li><p>[cmake] Fixed LZ4 and MessagePack detection. [Reported by Sergei
1182
+ Golubchik]</p></li>
1183
+ <li><p>[<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>] Fixed a bug that offline index
277
1184
  construction for vector column consumes unnecessary resources. If
278
1185
  you have a log of elements in one vector column and many records,
279
- Groogna will crash.
280
- [groonga-dev,04533][Reported by Toshio Uchiyama]</li>
1186
+ Groonga will crash.
1187
+ [groonga-dev,04533][Reported by Toshio Uchiyama]</p></li>
281
1188
  </ul>
282
1189
  </div>
283
- <div class="section" id="id6">
284
- <h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
1190
+ <div class="section" id="id42">
1191
+ <h3>Thanks<a class="headerlink" href="#id42" title="Permalink to this headline">¶</a></h3>
285
1192
  <ul class="simple">
286
- <li>Murata Satoshi</li>
287
- <li>myamanishi3</li>
288
- <li>Sergei Golubchik</li>
289
- <li>Toshio Uchiyama</li>
1193
+ <li><p>Murata Satoshi</p></li>
1194
+ <li><p>myamanishi3</p></li>
1195
+ <li><p>Sergei Golubchik</p></li>
1196
+ <li><p>Toshio Uchiyama</p></li>
290
1197
  </ul>
291
1198
  </div>
292
1199
  </div>
293
1200
  <div class="section" id="release-7-0-8-2017-10-29">
294
1201
  <span id="release-7-0-8"></span><h2>Release 7.0.8 - 2017-10-29<a class="headerlink" href="#release-7-0-8-2017-10-29" title="Permalink to this headline">¶</a></h2>
295
- <div class="section" id="id7">
296
- <h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
1202
+ <div class="section" id="id43">
1203
+ <h3>Improvements<a class="headerlink" href="#id43" title="Permalink to this headline">¶</a></h3>
297
1204
  <ul class="simple">
298
- <li>[windows] Supported backtrace on crash.
1205
+ <li><p>[windows] Supported backtrace on crash.
299
1206
  This feature not only function call history but also source filename
300
1207
  and number of lines can be displayed as much as possible.
301
- This feature makes problem solving easier.</li>
302
- <li>Supported <code class="docutils literal"><span class="pre">(</span> <span class="pre">)</span></code> (empty block) only query (<code class="docutils literal"><span class="pre">--query</span> <span class="pre">&quot;(</span> <span class="pre">)&quot;</span></code>) for
303
- <code class="docutils literal"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
304
- error. [GitHub#767]</li>
305
- <li>Supported <code class="docutils literal"><span class="pre">(+)</span></code> (only and block) only query (<code class="docutils literal"><span class="pre">--query</span> <span class="pre">&quot;(+)&quot;</span></code>)
306
- for <code class="docutils literal"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
307
- error. [GitHub#767]</li>
308
- <li>Supported <code class="docutils literal"><span class="pre">~foo</span></code> (starting with &quot;~&quot;) query (<code class="docutils literal"><span class="pre">--query</span> <span class="pre">&quot;~y&quot;</span></code>) for
309
- <code class="docutils literal"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
310
- error. [GitHub#767]</li>
311
- <li>Modified log level of <code class="docutils literal"><span class="pre">expired</span></code> from <code class="docutils literal"><span class="pre">info</span></code> to <code class="docutils literal"><span class="pre">debug</span></code>.
312
- <code class="docutils literal"><span class="pre">2017-10-29</span> <span class="pre">14:05:34.123456|i|</span> <span class="pre">&lt;0000000012345678:0&gt;</span> <span class="pre">expired</span>
1208
+ This feature makes problem solving easier.</p></li>
1209
+ <li><p>Supported <code class="docutils literal notranslate"><span class="pre">(</span> <span class="pre">)</span></code> (empty block) only query (<code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">&quot;(</span> <span class="pre">)&quot;</span></code>) for
1210
+ <code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
1211
+ error. [GitHub#767]</p></li>
1212
+ <li><p>Supported <code class="docutils literal notranslate"><span class="pre">(+)</span></code> (only and block) only query (<code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">&quot;(+)&quot;</span></code>)
1213
+ for <code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
1214
+ error. [GitHub#767]</p></li>
1215
+ <li><p>Supported <code class="docutils literal notranslate"><span class="pre">~foo</span></code> (starting with “~”) query (<code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">&quot;~y&quot;</span></code>) for
1216
+ <code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
1217
+ error. [GitHub#767]</p></li>
1218
+ <li><p>Modified log level of <code class="docutils literal notranslate"><span class="pre">expired</span></code> from <code class="docutils literal notranslate"><span class="pre">info</span></code> to <code class="docutils literal notranslate"><span class="pre">debug</span></code>.
1219
+ <code class="docutils literal notranslate"><span class="pre">2017-10-29</span> <span class="pre">14:05:34.123456|i|</span> <span class="pre">&lt;0000000012345678:0&gt;</span> <span class="pre">expired</span>
313
1220
  <span class="pre">i=000000000B123456</span> <span class="pre">max=10</span> <span class="pre">(2/2)</span></code> This message is logged when memory
314
1221
  mapped area for index is unmapped. Thus, this log message is useful
315
1222
  information for debugging, in other words, as it is unnecessary
316
- information in normal operation, we changed log level from <code class="docutils literal"><span class="pre">info</span></code>
317
- to <code class="docutils literal"><span class="pre">debug</span></code>.</li>
318
- <li>Supported Ubuntu 17.10 (Artful Aardvark)</li>
1223
+ information in normal operation, we changed log level from <code class="docutils literal notranslate"><span class="pre">info</span></code>
1224
+ to <code class="docutils literal notranslate"><span class="pre">debug</span></code>.</p></li>
1225
+ <li><p>Supported Ubuntu 17.10 (Artful Aardvark)</p></li>
319
1226
  </ul>
320
1227
  </div>
321
- <div class="section" id="id8">
322
- <h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
1228
+ <div class="section" id="id44">
1229
+ <h3>Fixes<a class="headerlink" href="#id44" title="Permalink to this headline">¶</a></h3>
323
1230
  <ul class="simple">
324
- <li>[dat] Fixed a bug that large file is created unexpectedly in the
1231
+ <li><p>[dat] Fixed a bug that large file is created unexpectedly in the
325
1232
  worst case during database expansion process. This bug may occurs
326
1233
  when you create/delete index columns so frequently. In 7.0.7
327
- release, a related bug was fixed - &quot;<code class="docutils literal"><span class="pre">table_create</span></code> command fails
328
- when there are many deleted keys&quot;, but it turns out that it is not
329
- enough in the worst case.</li>
330
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that when
331
- <code class="docutils literal"><span class="pre">offset</span></code> and <code class="docutils literal"><span class="pre">limit</span></code> were applied to multiple shards at the same
1234
+ release, a related bug was fixed - “<code class="docutils literal notranslate"><span class="pre">table_create</span></code> command fails
1235
+ when there are many deleted keys”, but it turns out that it is not
1236
+ enough in the worst case.</p></li>
1237
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that when
1238
+ <code class="docutils literal notranslate"><span class="pre">offset</span></code> and <code class="docutils literal notranslate"><span class="pre">limit</span></code> were applied to multiple shards at the same
332
1239
  time, there is a case that it returns a fewer number of records
333
- unexpectedly.</li>
1240
+ unexpectedly.</p></li>
334
1241
  </ul>
335
1242
  </div>
336
1243
  </div>
337
1244
  <div class="section" id="release-7-0-7-2017-09-29">
338
1245
  <span id="release-7-0-7"></span><h2>Release 7.0.7 - 2017-09-29<a class="headerlink" href="#release-7-0-7-2017-09-29" title="Permalink to this headline">¶</a></h2>
339
- <div class="section" id="id9">
340
- <h3>Improvements<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
1246
+ <div class="section" id="id45">
1247
+ <h3>Improvements<a class="headerlink" href="#id45" title="Permalink to this headline">¶</a></h3>
341
1248
  <ul>
342
- <li><p class="first">Supported <code class="docutils literal"><span class="pre">+</span></code> only query (<code class="docutils literal"><span class="pre">--query</span> <span class="pre">&quot;+&quot;</span></code>) for
343
- <code class="docutils literal"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
344
- error.</p>
345
- </li>
346
- <li><p class="first">[httpd] Updated bundled nginx to 1.13.5.</p>
347
- </li>
348
- <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Added the default argument values
349
- to the syntax section.</p>
350
- </li>
351
- <li><p class="first">[<a class="reference internal" href="reference/command/command_version.html"><span class="doc">Command version</span></a>] Supported <code class="docutils literal"><span class="pre">--default-command-version</span> <span class="pre">3</span></code>.</p>
352
- </li>
353
- <li><p class="first">Supported caching select result with function call. Now, most of
1249
+ <li><p>Supported <code class="docutils literal notranslate"><span class="pre">+</span></code> only query (<code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">&quot;+&quot;</span></code>) for
1250
+ <code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code>. In the previous version, it caused an
1251
+ error.</p></li>
1252
+ <li><p>[httpd] Updated bundled nginx to 1.13.5.</p></li>
1253
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Added the default argument values
1254
+ to the syntax section.</p></li>
1255
+ <li><p>[<a class="reference internal" href="reference/command/command_version.html"><span class="doc">Command version</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">--default-command-version</span> <span class="pre">3</span></code>.</p></li>
1256
+ <li><p>Supported caching select result with function call. Now, most of
354
1257
  existing functions supports this feature. There are two exception,
355
- when <code class="docutils literal"><span class="pre">now()</span></code> and <code class="docutils literal"><span class="pre">rand()</span></code> are used in query, select result will
1258
+ when <code class="docutils literal notranslate"><span class="pre">now()</span></code> and <code class="docutils literal notranslate"><span class="pre">rand()</span></code> are used in query, select result will
356
1259
  not cached. Because of this default behavior change, new APIs are
357
1260
  introduced.</p>
358
1261
  <ul class="simple">
359
- <li><code class="docutils literal"><span class="pre">grn_proc_set_is_stable()</span></code></li>
360
- <li><code class="docutils literal"><span class="pre">grn_proc_is_stable()</span></code></li>
1262
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_proc_set_is_stable()</span></code></p></li>
1263
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_proc_is_stable()</span></code></p></li>
361
1264
  </ul>
362
1265
  <p>Note that if you add a new function that may return different result
363
- with the same argument, you must call <code class="docutils literal"><span class="pre">grn_proc_is_stable(ctx,</span>
364
- <span class="pre">proc,</span> <span class="pre">GRN_FALSE)</span></code>. If you don't call it, select result with the
1266
+ with the same argument, you must call <code class="docutils literal notranslate"><span class="pre">grn_proc_is_stable(ctx,</span>
1267
+ <span class="pre">proc,</span> <span class="pre">GRN_FALSE)</span></code>. If you dont call it, select result with the
365
1268
  function call is cached and is wrong result for multiple requests.</p>
366
1269
  </li>
367
1270
  </ul>
368
1271
  </div>
369
- <div class="section" id="id10">
370
- <h3>Fixes<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
1272
+ <div class="section" id="id46">
1273
+ <h3>Fixes<a class="headerlink" href="#id46" title="Permalink to this headline">¶</a></h3>
371
1274
  <ul>
372
- <li><p class="first">[windows] Fixed to clean up file handle correctly on failure when
373
- <code class="docutils literal"><span class="pre">database_unmap</span></code> is executed. There is a case that critical
1275
+ <li><p>[windows] Fixed to clean up file handle correctly on failure when
1276
+ <code class="docutils literal notranslate"><span class="pre">database_unmap</span></code> is executed. There is a case that critical
374
1277
  section is not initialized when request is canceled before executing
375
- <code class="docutils literal"><span class="pre">database_unmap</span></code>. In such a case, it caused a crach bug.</p>
376
- </li>
377
- <li><p class="first">[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Fixed document for wrong tokenizer
378
- names. It should be <code class="docutils literal"><span class="pre">TokenBigramIgnoreBlankSplitSymbolAlpha</span></code> and
379
- <code class="docutils literal"><span class="pre">TokenBigramIgnoreBlankSplitSymbolAlphaDigit</span></code>.</p>
380
- </li>
381
- <li><p class="first">Changed not to keep created empty file on error.</p>
1278
+ <code class="docutils literal notranslate"><span class="pre">database_unmap</span></code>. In such a case, it caused a crach bug.</p></li>
1279
+ <li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Fixed document for wrong tokenizer
1280
+ names. It should be <code class="docutils literal notranslate"><span class="pre">TokenBigramIgnoreBlankSplitSymbolAlpha</span></code> and
1281
+ <code class="docutils literal notranslate"><span class="pre">TokenBigramIgnoreBlankSplitSymbolAlphaDigit</span></code>.</p></li>
1282
+ <li><p>Changed not to keep created empty file on error.</p>
382
1283
  <p>In the previous versions, there is a case that empty file keeps
383
1284
  remain on error.</p>
384
1285
  <p>Here is the senario to reproduce:</p>
385
1286
  <blockquote>
386
1287
  <div><ol class="arabic simple">
387
- <li>creating new file by grn_fileinfo_open succeeds</li>
388
- <li>mapping file by DO_MAP() is failed</li>
1288
+ <li><p>creating new file by grn_fileinfo_open succeeds</p></li>
1289
+ <li><p>mapping file by DO_MAP() is failed</p></li>
389
1290
  </ol>
390
1291
  </div></blockquote>
391
1292
  <p>In such a case, it causes an another error such as
392
- &quot;already file exists&quot; because of the file which
393
- isn't under control. so these file should be removed during
1293
+ already file exists because of the file which
1294
+ isnt under control. so these file should be removed during
394
1295
  cleanup process.</p>
395
1296
  </li>
396
- <li><p class="first">Fixed a bug that Groonga may be crashed when search process is
397
- executed during executing many updates in a short time.</p>
398
- </li>
399
- <li><p class="first">[<a class="reference internal" href="reference/commands/table_create.html"><span class="doc">table_create</span></a>] Fixed a bug that
400
- <code class="docutils literal"><span class="pre">table_create</span></code> failed when there are many deleted keys.</p>
401
- </li>
1297
+ <li><p>Fixed a bug that Groonga may be crashed when search process is
1298
+ executed during executing many updates in a short time.</p></li>
1299
+ <li><p>[<a class="reference internal" href="reference/commands/table_create.html"><span class="doc">table_create</span></a>] Fixed a bug that
1300
+ <code class="docutils literal notranslate"><span class="pre">table_create</span></code> failed when there are many deleted keys.</p></li>
402
1301
  </ul>
403
1302
  </div>
404
1303
  </div>
405
1304
  <div class="section" id="release-7-0-6-2017-08-29">
406
1305
  <span id="release-7-0-6"></span><h2>Release 7.0.6 - 2017-08-29<a class="headerlink" href="#release-7-0-6-2017-08-29" title="Permalink to this headline">¶</a></h2>
407
- <div class="section" id="id11">
408
- <h3>Improvements<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
1306
+ <div class="section" id="id47">
1307
+ <h3>Improvements<a class="headerlink" href="#id47" title="Permalink to this headline">¶</a></h3>
409
1308
  <ul class="simple">
410
- <li>Supported prefix match search using multiple
411
- indexes. (e.g. <code class="docutils literal"><span class="pre">--query</span> <span class="pre">&quot;Foo*&quot;</span> <span class="pre">--match_columns</span>
412
- <span class="pre">&quot;TITLE_INDEX_COLUMN||BODY_INDEX_COLUMN&quot;</span></code>).</li>
413
- <li>[<a class="reference internal" href="reference/window_functions/window_count.html"><span class="doc">window_count</span></a>] Supported
414
- <code class="docutils literal"><span class="pre">window_count</span></code> function to add count data to result set. It is
415
- useful to analyze or filter additionally.</li>
416
- <li>Added the following API<ul>
417
- <li><code class="docutils literal"><span class="pre">grn_obj_get_disk_usage():</span></code></li>
418
- <li><code class="docutils literal"><span class="pre">GRN_EXPR_QUERY_NO_SYNTAX_ERROR</span></code></li>
419
- <li><code class="docutils literal"><span class="pre">grn_expr_syntax_expand_query_by_table()</span></code></li>
420
- <li><code class="docutils literal"><span class="pre">grn_table_find_reference_object()</span></code></li>
421
- </ul>
422
- </li>
423
- <li>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] Supported to show disk
424
- usage about specified object.</li>
425
- <li>Supported falling back query parse feature. It is enabled when
426
- <code class="docutils literal"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code> flag is set to <code class="docutils literal"><span class="pre">query_flags</span></code>. (this
1309
+ <li><p>Supported prefix match search using multiple
1310
+ indexes. (e.g. <code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">&quot;Foo*&quot;</span> <span class="pre">--match_columns</span>
1311
+ <span class="pre">&quot;TITLE_INDEX_COLUMN||BODY_INDEX_COLUMN&quot;</span></code>).</p></li>
1312
+ <li><p>[<a class="reference internal" href="reference/window_functions/window_count.html"><span class="doc">window_count</span></a>] Supported
1313
+ <code class="docutils literal notranslate"><span class="pre">window_count</span></code> function to add count data to result set. It is
1314
+ useful to analyze or filter additionally.</p></li>
1315
+ <li><p>Added the following API</p>
1316
+ <ul>
1317
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_obj_get_disk_usage():</span></code></p></li>
1318
+ <li><p><code class="docutils literal notranslate"><span class="pre">GRN_EXPR_QUERY_NO_SYNTAX_ERROR</span></code></p></li>
1319
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_expr_syntax_expand_query_by_table()</span></code></p></li>
1320
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_table_find_reference_object()</span></code></p></li>
1321
+ </ul>
1322
+ </li>
1323
+ <li><p>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] Supported to show disk
1324
+ usage about specified object.</p></li>
1325
+ <li><p>Supported falling back query parse feature. It is enabled when
1326
+ <code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code> flag is set to <code class="docutils literal notranslate"><span class="pre">query_flags</span></code>. (this
427
1327
  feature is disabled by default). If this flag is set, query never
428
- causes syntax error. For example, &quot;A +&quot; is parsed and escaped
429
- automatically into &quot;A +&quot;. This behavior is useful when application
430
- uses user input directly and doesn't want to show syntax error to
431
- user and in log.</li>
432
- <li>Supported to adjust score for term in query. &quot;&gt;&quot;, &quot;&lt;&quot;, and &quot;~&quot;
433
- operators are supported. For example, &quot;&gt;Groonga&quot; increments score of
434
- &quot;Groonga&quot;, &quot;&lt;Groonga&quot; decrements score of &quot;Groonga&quot;. &quot;~Groonga&quot;
1328
+ causes syntax error. For example, A +” is parsed and escaped
1329
+ automatically into A +”. This behavior is useful when application
1330
+ uses user input directly and doesnt want to show syntax error to
1331
+ user and in log.</p></li>
1332
+ <li><p>Supported to adjust score for term in query. “&gt;”, “&lt;”, and “~”
1333
+ operators are supported. For example, “&gt;Groonga increments score of
1334
+ Groonga”, “&lt;Groonga decrements score of Groonga”. “~Groonga
435
1335
  decreases score of matched document in the current search
436
- result. &quot;~&quot; operator doesn't change search result itself.</li>
437
- <li>Improved performance to remove table. <code class="docutils literal"><span class="pre">thread_limit=1</span></code> is not
1336
+ result. “~” operator doesnt change search result itself.</p></li>
1337
+ <li><p>Improved performance to remove table. <code class="docutils literal notranslate"><span class="pre">thread_limit=1</span></code> is not
438
1338
  needed for it. The process about checking referenced table existence
439
1339
  is done without opening objects. As a result, performance is
440
- improved.</li>
441
- <li>[httpd] Updated bundled nginx to 1.13.4.</li>
1340
+ improved.</p></li>
1341
+ <li><p>[httpd] Updated bundled nginx to 1.13.4.</p></li>
442
1342
  </ul>
443
1343
  </div>
444
- <div class="section" id="id12">
445
- <h3>Fixes<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
1344
+ <div class="section" id="id48">
1345
+ <h3>Fixes<a class="headerlink" href="#id48" title="Permalink to this headline">¶</a></h3>
446
1346
  <ul class="simple">
447
- <li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Fixed a bug that the 7-th unnamed
448
- parameter for <cite>--sort_hash_table</cite> option is ignored.</li>
449
- <li>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] Fixed a typo in command line
1347
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Fixed a bug that the 7-th unnamed
1348
+ parameter for <cite>–sort_hash_table</cite> option is ignored.</p></li>
1349
+ <li><p>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] Fixed a typo in command line
450
1350
  parameter name. It should be <cite>source</cite> instead of <cite>sources</cite>.
451
- [groonga-dev,04449] [Reported by murata satoshi]</li>
452
- <li>[<a class="reference internal" href="reference/commands/ruby_eval.html"><span class="doc">ruby_eval</span></a>] Fixed crash when ruby_eval
453
- returned syntax error. [GitHub#751] [Patch by ryo-pinus]</li>
1351
+ [groonga-dev,04449] [Reported by murata satoshi]</p></li>
1352
+ <li><p>[<a class="reference internal" href="reference/commands/ruby_eval.html"><span class="doc">ruby_eval</span></a>] Fixed crash when ruby_eval
1353
+ returned syntax error. [GitHub#751] [Patch by ryo-pinus]</p></li>
454
1354
  </ul>
455
1355
  </div>
456
- <div class="section" id="id13">
457
- <h3>Thanks<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
1356
+ <div class="section" id="id49">
1357
+ <h3>Thanks<a class="headerlink" href="#id49" title="Permalink to this headline">¶</a></h3>
458
1358
  <ul class="simple">
459
- <li>murata satoshi</li>
460
- <li>ryo-pinus</li>
1359
+ <li><p>murata satoshi</p></li>
1360
+ <li><p>ryo-pinus</p></li>
461
1361
  </ul>
462
1362
  </div>
463
1363
  </div>
464
1364
  <div class="section" id="release-7-0-5-2017-07-29">
465
1365
  <span id="release-7-0-5"></span><h2>Release 7.0.5 - 2017-07-29<a class="headerlink" href="#release-7-0-5-2017-07-29" title="Permalink to this headline">¶</a></h2>
466
- <div class="section" id="id14">
467
- <h3>Improvements<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
1366
+ <div class="section" id="id50">
1367
+ <h3>Improvements<a class="headerlink" href="#id50" title="Permalink to this headline">¶</a></h3>
468
1368
  <ul class="simple">
469
- <li>[httpd] Updated bundled nginx to 1.13.3. Note that this version
470
- contains security fix for CVE-2017-7529.</li>
471
- <li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to load the value of max
1369
+ <li><p>[httpd] Updated bundled nginx to 1.13.3. Note that this version
1370
+ contains security fix for CVE-2017-7529.</p></li>
1371
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to load the value of max
472
1372
  UInt64. In the previous versions, max UInt64 value is converted into
473
- 0 unexpectedlly.</li>
474
- <li>Added the following API<ul>
475
- <li><code class="docutils literal"><span class="pre">grn_window_get_size()</span></code> [GitHub#725] [Patch by Naoya Murakami]</li>
476
- </ul>
477
- </li>
478
- <li>[<a class="reference internal" href="reference/functions/math_abs.html"><span class="doc">math_abs</span></a>] Supported <code class="docutils literal"><span class="pre">math_abs()</span></code>
479
- function to calculate absolute value. [GitHub#721]</li>
480
- <li>Supported to make <code class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></code> and
481
- <code class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></code> thread safe.</li>
482
- <li>[windows] Updated bundled pcre library to 8.41.</li>
483
- <li>[<a class="reference internal" href="reference/commands/normalize.html"><span class="doc">normalize</span></a>] Improved not to output
484
- redundant empty string <code class="docutils literal"><span class="pre">&quot;&quot;</span></code> on error. [GitHub#730]</li>
485
- <li>[functions/time] Supported to show error message when division by
486
- zero was happened. [GitHub#733] [Patch by Naoya Murakami]</li>
487
- <li>[windows] Changed to map <code class="docutils literal"><span class="pre">ERROR_NO_SYSTEM_RESOURCES</span></code> to
488
- <code class="docutils literal"><span class="pre">GRN_RESOURCE_TEMPORARILY_UNAVAILABLE</span></code>. In the previous versions,
489
- it returns <code class="docutils literal"><span class="pre">rc=-1</span></code> as a result code. It is not helpful to
1373
+ 0 unexpectedlly.</p></li>
1374
+ <li><p>Added the following API</p>
1375
+ <ul>
1376
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_window_get_size()</span></code> [GitHub#725] [Patch by Naoya Murakami]</p></li>
1377
+ </ul>
1378
+ </li>
1379
+ <li><p>[<a class="reference internal" href="reference/functions/math_abs.html"><span class="doc">math_abs</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">math_abs()</span></code>
1380
+ function to calculate absolute value. [GitHub#721]</p></li>
1381
+ <li><p>Supported to make <code class="docutils literal notranslate"><span class="pre">grn_default_logger_set_path()</span></code> and
1382
+ <code class="docutils literal notranslate"><span class="pre">grn_default_query_logger_set_path()</span></code> thread safe.</p></li>
1383
+ <li><p>[windows] Updated bundled pcre library to 8.41.</p></li>
1384
+ <li><p>[<a class="reference internal" href="reference/commands/normalize.html"><span class="doc">normalize</span></a>] Improved not to output
1385
+ redundant empty string <code class="docutils literal notranslate"><span class="pre">&quot;&quot;</span></code> on error. [GitHub#730]</p></li>
1386
+ <li><p>[functions/time] Supported to show error message when division by
1387
+ zero was happened. [GitHub#733] [Patch by Naoya Murakami]</p></li>
1388
+ <li><p>[windows] Changed to map <code class="docutils literal notranslate"><span class="pre">ERROR_NO_SYSTEM_RESOURCES</span></code> to
1389
+ <code class="docutils literal notranslate"><span class="pre">GRN_RESOURCE_TEMPORARILY_UNAVAILABLE</span></code>. In the previous versions,
1390
+ it returns <code class="docutils literal notranslate"><span class="pre">rc=-1</span></code> as a result code. It is not helpful to
490
1391
  investigate what actually happened. With this fix, it returns
491
- <code class="docutils literal"><span class="pre">rc=-12</span></code>.</li>
492
- <li>[functions/min][functions/max] Supported vector column. Now you need
1392
+ <code class="docutils literal notranslate"><span class="pre">rc=-12</span></code>.</p></li>
1393
+ <li><p>[functions/min][functions/max] Supported vector column. Now you need
493
1394
  not to care scalar column or vector column to use. [GitHub#735]
494
- [Patch by Naoya Murakami]</li>
495
- <li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported <code class="docutils literal"><span class="pre">--sort_hash_table</span></code>
496
- option to sort by <code class="docutils literal"><span class="pre">_key</span></code> for hash table. Specify
497
- <code class="docutils literal"><span class="pre">--sort_hash_table</span> <span class="pre">yes</span></code> to use it.</li>
498
- <li>[<a class="reference internal" href="reference/functions/between.html"><span class="doc">between</span></a>] Supported to specify index
499
- column. [GitHub#740] [Patch by Naoya Murakami]</li>
500
- <li>[load] Supported Apache Arrow 0.5.0 or later.</li>
501
- <li>[<a class="reference internal" href="troubleshooting/how_to_analyze_error_message.html"><span class="doc">How to analyze error messages</span></a>]
502
- Added howto article to analyze error message in Groonga.</li>
503
- <li>[<a class="reference internal" href="install/debian.html"><span class="doc">Debian GNU/Linux</span></a>] Updated required package list to
504
- build from source.</li>
505
- <li>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 16.10 (Yakkety
506
- Yak) support. It has reached EOL at July 20, 2017.</li>
1395
+ [Patch by Naoya Murakami]</p></li>
1396
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">--sort_hash_table</span></code>
1397
+ option to sort by <code class="docutils literal notranslate"><span class="pre">_key</span></code> for hash table. Specify
1398
+ <code class="docutils literal notranslate"><span class="pre">--sort_hash_table</span> <span class="pre">yes</span></code> to use it.</p></li>
1399
+ <li><p>[<a class="reference internal" href="reference/functions/between.html"><span class="doc">between</span></a>] Supported to specify index
1400
+ column. [GitHub#740] [Patch by Naoya Murakami]</p></li>
1401
+ <li><p>[load] Supported Apache Arrow 0.5.0 or later.</p></li>
1402
+ <li><p>[<a class="reference internal" href="troubleshooting/how_to_analyze_error_message.html"><span class="doc">How to analyze error messages</span></a>]
1403
+ Added howto article to analyze error message in Groonga.</p></li>
1404
+ <li><p>[<a class="reference internal" href="install/debian.html"><span class="doc">Debian GNU/Linux</span></a>] Updated required package list to
1405
+ build from source.</p></li>
1406
+ <li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 16.10 (Yakkety
1407
+ Yak) support. It has reached EOL at July 20, 2017.</p></li>
507
1408
  </ul>
508
1409
  </div>
509
- <div class="section" id="id15">
510
- <h3>Fixes<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
1410
+ <div class="section" id="id51">
1411
+ <h3>Fixes<a class="headerlink" href="#id51" title="Permalink to this headline">¶</a></h3>
511
1412
  <ul class="simple">
512
- <li>Fixed to construct correct fulltext indexes against vector column
513
- which type belongs to text family (<code class="docutils literal"><span class="pre">`ShortText</span></code> and so on). This
514
- fix resolves that fulltext search doesn't work well against text
515
- vector column after updating indexes. [GitHub#494]</li>
516
- <li>[<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Fixed a bug that deadlock
517
- occurs when thread_limit?max=1 is requested at once.</li>
518
- <li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed a mismatch path
1413
+ <li><p>Fixed to construct correct fulltext indexes against vector column
1414
+ which type belongs to text family (<code class="docutils literal notranslate"><span class="pre">`ShortText</span></code> and so on). This
1415
+ fix resolves that fulltext search doesnt work well against text
1416
+ vector column after updating indexes. [GitHub#494]</p></li>
1417
+ <li><p>[<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Fixed a bug that deadlock
1418
+ occurs when thread_limit?max=1 is requested at once.</p></li>
1419
+ <li><p>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed a mismatch path
519
1420
  of pid file between default one and restart command assumed. This
520
1421
  mismatch blocked restarting groonga-httpd. [GitHub#743] [Reported by
521
- sozaki]</li>
1422
+ sozaki]</p></li>
522
1423
  </ul>
523
1424
  </div>
524
- <div class="section" id="id16">
525
- <h3>Thanks<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
1425
+ <div class="section" id="id52">
1426
+ <h3>Thanks<a class="headerlink" href="#id52" title="Permalink to this headline">¶</a></h3>
526
1427
  <ul class="simple">
527
- <li>Naoya Murakami</li>
1428
+ <li><p>Naoya Murakami</p></li>
528
1429
  </ul>
529
1430
  </div>
530
1431
  </div>
531
1432
  <div class="section" id="release-7-0-4-2017-06-29">
532
1433
  <span id="release-7-0-4"></span><h2>Release 7.0.4 - 2017-06-29<a class="headerlink" href="#release-7-0-4-2017-06-29" title="Permalink to this headline">¶</a></h2>
533
- <div class="section" id="id17">
534
- <h3>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
1434
+ <div class="section" id="id53">
1435
+ <h3>Improvements<a class="headerlink" href="#id53" title="Permalink to this headline">¶</a></h3>
535
1436
  <ul class="simple">
536
- <li>Added physical create/delete operation logs to identify problem for
537
- troubleshooting. [GitHub#700,#701]</li>
538
- <li>[<a class="reference internal" href="reference/functions/in_records.html"><span class="doc">in_records</span></a>] Improved performance for
539
- fixed sized column. It may reduce 50% execution time.</li>
540
- <li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added <code class="docutils literal"><span class="pre">--log-path</span></code> option.
541
- [GitHub#702,#703]</li>
542
- <li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added <code class="docutils literal"><span class="pre">--log-level</span></code> option.
543
- [GitHub#706,#708]</li>
544
- <li>Added the following API<ul>
545
- <li><code class="docutils literal"><span class="pre">grn_operator_to_exec_func()</span></code></li>
546
- <li><code class="docutils literal"><span class="pre">grn_obj_is_corrupt()</span></code></li>
547
- </ul>
548
- </li>
549
- <li>Improved performance for &quot;FIXED_SIZE_COLUMN OP CONSTANT&quot;. Supported
550
- operators are: <code class="docutils literal"><span class="pre">==</span></code>, <code class="docutils literal"><span class="pre">!=</span></code>, <code class="docutils literal"><span class="pre">&lt;</span></code>, <code class="docutils literal"><span class="pre">&gt;</span></code>, <code class="docutils literal"><span class="pre">&lt;=</span></code> and <code class="docutils literal"><span class="pre">&gt;=</span></code>.</li>
551
- <li>Improved performance for &quot;COLUMN OP VALUE &amp;&amp; COLUMN OP VALUE &amp;&amp; ...&quot;.</li>
552
- <li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Supported corrupted object
553
- detection with <code class="docutils literal"><span class="pre">grndb</span> <span class="pre">check</span></code>.</li>
554
- <li>[<a class="reference internal" href="reference/commands/io_flush.html"><span class="doc">io_flush</span></a>] Supported <code class="docutils literal"><span class="pre">--only_opened</span></code>
555
- option which enables to flush only opened database objects.</li>
556
- <li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Supported to detect/delete
557
- orphan &quot;inspect&quot; object. The orphaned &quot;inspect&quot; object is created by
558
- renamed command name from <code class="docutils literal"><span class="pre">inspect</span></code> to <code class="docutils literal"><span class="pre">object_inspect</span></code>.</li>
1437
+ <li><p>Added physical create/delete operation logs to identify problem for
1438
+ troubleshooting. [GitHub#700,#701]</p></li>
1439
+ <li><p>[<a class="reference internal" href="reference/functions/in_records.html"><span class="doc">in_records</span></a>] Improved performance for
1440
+ fixed sized column. It may reduce 50% execution time.</p></li>
1441
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added <code class="docutils literal notranslate"><span class="pre">--log-path</span></code> option.
1442
+ [GitHub#702,#703]</p></li>
1443
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added <code class="docutils literal notranslate"><span class="pre">--log-level</span></code> option.
1444
+ [GitHub#706,#708]</p></li>
1445
+ <li><p>Added the following API</p>
1446
+ <ul>
1447
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_operator_to_exec_func()</span></code></p></li>
1448
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_obj_is_corrupt()</span></code></p></li>
1449
+ </ul>
1450
+ </li>
1451
+ <li><p>Improved performance for “FIXED_SIZE_COLUMN OP CONSTANT”. Supported
1452
+ operators are: <code class="docutils literal notranslate"><span class="pre">==</span></code>, <code class="docutils literal notranslate"><span class="pre">!=</span></code>, <code class="docutils literal notranslate"><span class="pre">&lt;</span></code>, <code class="docutils literal notranslate"><span class="pre">&gt;</span></code>, <code class="docutils literal notranslate"><span class="pre">&lt;=</span></code> and <code class="docutils literal notranslate"><span class="pre">&gt;=</span></code>.</p></li>
1453
+ <li><p>Improved performance for “COLUMN OP VALUE &amp;&amp; COLUMN OP VALUE &amp;&amp; …”.</p></li>
1454
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Supported corrupted object
1455
+ detection with <code class="docutils literal notranslate"><span class="pre">grndb</span> <span class="pre">check</span></code>.</p></li>
1456
+ <li><p>[<a class="reference internal" href="reference/commands/io_flush.html"><span class="doc">io_flush</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">--only_opened</span></code>
1457
+ option which enables to flush only opened database objects.</p></li>
1458
+ <li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Supported to detect/delete
1459
+ orphan “inspect” object. The orphaned inspect object is created by
1460
+ renamed command name from <code class="docutils literal notranslate"><span class="pre">inspect</span></code> to <code class="docutils literal notranslate"><span class="pre">object_inspect</span></code>.</p></li>
559
1461
  </ul>
560
1462
  </div>
561
- <div class="section" id="id18">
562
- <h3>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
1463
+ <div class="section" id="id54">
1464
+ <h3>Fixes<a class="headerlink" href="#id54" title="Permalink to this headline">¶</a></h3>
563
1465
  <ul class="simple">
564
- <li>[rpm][centos] Fixed unexpected macro expansion problem with
1466
+ <li><p>[rpm][centos] Fixed unexpected macro expansion problem with
565
1467
  customized build. This bug only affects when rebuilding Groonga SRPM
566
- with customized <code class="docutils literal"><span class="pre">additional_configure_options</span></code> parameter in spec
567
- file.</li>
568
- <li>Fixed missing null check for <code class="docutils literal"><span class="pre">grn_table_setoperation()</span></code>. There is a
569
- possibility of crash bug when indexes are broken. [GitHub#699]</li>
1468
+ with customized <code class="docutils literal notranslate"><span class="pre">additional_configure_options</span></code> parameter in spec
1469
+ file.</p></li>
1470
+ <li><p>Fixed missing null check for <code class="docutils literal notranslate"><span class="pre">grn_table_setoperation()</span></code>. There is a
1471
+ possibility of crash bug when indexes are broken. [GitHub#699]</p></li>
570
1472
  </ul>
571
1473
  </div>
572
- <div class="section" id="id19">
573
- <h3>Thanks<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
1474
+ <div class="section" id="id55">
1475
+ <h3>Thanks<a class="headerlink" href="#id55" title="Permalink to this headline">¶</a></h3>
574
1476
  </div>
575
1477
  </div>
576
1478
  <div class="section" id="release-7-0-3-2017-05-29">
577
1479
  <span id="release-7-0-3"></span><h2>Release 7.0.3 - 2017-05-29<a class="headerlink" href="#release-7-0-3-2017-05-29" title="Permalink to this headline">¶</a></h2>
578
- <div class="section" id="id20">
579
- <h3>Improvements<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
1480
+ <div class="section" id="id56">
1481
+ <h3>Improvements<a class="headerlink" href="#id56" title="Permalink to this headline">¶</a></h3>
580
1482
  <ul class="simple">
581
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Add document about
582
- <a class="reference internal" href="tutorial/match_columns.html#full-text-search-with-specific-index-name"><span class="std std-ref">Full text search with specific index name</span></a>.</li>
583
- <li>[index] Supported to log warning message which record causes posting
584
- list overflows.</li>
585
- <li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>][<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>]
586
- Supported Apache Arrow. [GitHub#691]</li>
587
- <li>[cmake] Supported linking lz4 in embedded static library build.
588
- [Original patch by Sergei Golubchik]</li>
589
- <li>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Supported to cancel.</li>
590
- <li>[httpd] Updated bundled nginx to 1.13.0</li>
591
- <li>Exported the following API<ul>
592
- <li>grn_plugin_proc_get_caller()</li>
1483
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Add document about
1484
+ <a class="reference internal" href="tutorial/match_columns.html#full-text-search-with-specific-index-name"><span class="std std-ref">Full text search with specific index name</span></a>.</p></li>
1485
+ <li><p>[index] Supported to log warning message which record causes posting
1486
+ list overflows.</p></li>
1487
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>][<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>]
1488
+ Supported Apache Arrow. [GitHub#691]</p></li>
1489
+ <li><p>[cmake] Supported linking lz4 in embedded static library build.
1490
+ [Original patch by Sergei Golubchik]</p></li>
1491
+ <li><p>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Supported to cancel.</p></li>
1492
+ <li><p>[httpd] Updated bundled nginx to 1.13.0</p></li>
1493
+ <li><p>Exported the following API</p>
1494
+ <ul>
1495
+ <li><p>grn_plugin_proc_get_caller()</p></li>
593
1496
  </ul>
594
1497
  </li>
595
- <li>Added index column related function and selector.<ul>
596
- <li>Added new selector: index_column_df_ratio_between()</li>
597
- <li>Added new function: index_column_df_ratio()</li>
1498
+ <li><p>Added index column related function and selector.</p>
1499
+ <ul>
1500
+ <li><p>Added new selector: index_column_df_ratio_between()</p></li>
1501
+ <li><p>Added new function: index_column_df_ratio()</p></li>
598
1502
  </ul>
599
1503
  </li>
600
1504
  </ul>
601
1505
  </div>
602
- <div class="section" id="id21">
603
- <h3>Fixes<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
1506
+ <div class="section" id="id57">
1507
+ <h3>Fixes<a class="headerlink" href="#id57" title="Permalink to this headline">¶</a></h3>
604
1508
  <ul class="simple">
605
- <li>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Fixed a bug that error isn't
1509
+ <li><p>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] Fixed a bug that error isnt
606
1510
  cleared correctly. It affects to following deletions so that it
607
- causes unexpected behavior.</li>
608
- <li>[windows] Fixed a bug that IO version is not detected correctly when the
609
- file is opened with <code class="docutils literal"><span class="pre">O_CREAT</span></code> flag.</li>
610
- <li>[<a class="reference internal" href="reference/functions/vector_slice.html"><span class="doc">vector_slice</span></a>] Fixed a bug that non 4
611
- bytes vector columns can't slice. [GitHub#695] [Patch by Naoya
612
- Murakami]</li>
613
- <li>Fixed a bug that non 4 bytes fixed vector column can't sequential
1511
+ causes unexpected behavior.</p></li>
1512
+ <li><p>[windows] Fixed a bug that IO version is not detected correctly when the
1513
+ file is opened with <code class="docutils literal notranslate"><span class="pre">O_CREAT</span></code> flag.</p></li>
1514
+ <li><p>[<a class="reference internal" href="reference/functions/vector_slice.html"><span class="doc">vector_slice</span></a>] Fixed a bug that non 4
1515
+ bytes vector columns cant slice. [GitHub#695] [Patch by Naoya
1516
+ Murakami]</p></li>
1517
+ <li><p>Fixed a bug that non 4 bytes fixed vector column cant sequential
614
1518
  match by specifying index of vector. [GitHub#696] [Patch by Naoya
615
- Murakami]</li>
616
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that
617
- &quot;argument out of range&quot; occurs when setting last day of month to the
618
- min. [GitHub#698]</li>
1519
+ Murakami]</p></li>
1520
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that
1521
+ argument out of range occurs when setting last day of month to the
1522
+ min. [GitHub#698]</p></li>
619
1523
  </ul>
620
1524
  </div>
621
- <div class="section" id="id22">
622
- <h3>Thanks<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
1525
+ <div class="section" id="id58">
1526
+ <h3>Thanks<a class="headerlink" href="#id58" title="Permalink to this headline">¶</a></h3>
623
1527
  <ul class="simple">
624
- <li>Sergei Golubchik</li>
625
- <li>Naoya Murakami</li>
1528
+ <li><p>Sergei Golubchik</p></li>
1529
+ <li><p>Naoya Murakami</p></li>
626
1530
  </ul>
627
1531
  </div>
628
1532
  </div>
629
1533
  <div class="section" id="release-7-0-2-2017-04-29">
630
1534
  <span id="release-7-0-2"></span><h2>Release 7.0.2 - 2017-04-29<a class="headerlink" href="#release-7-0-2-2017-04-29" title="Permalink to this headline">¶</a></h2>
631
- <div class="section" id="id23">
632
- <h3>Improvements<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
1535
+ <div class="section" id="id59">
1536
+ <h3>Improvements<a class="headerlink" href="#id59" title="Permalink to this headline">¶</a></h3>
633
1537
  <ul class="simple">
634
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported multiple
1538
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported multiple
635
1539
  <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldowns-label-columns-name-window-sort-keys"><span class="std std-ref">drilldowns[${LABEL}].columns[${NAME}].window.sort_keys</span></a>
636
1540
  and
637
- <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldowns-label-columns-name-window-group-keys"><span class="std std-ref">drilldowns[${LABEL}].columns[${NAME}].window.group_keys</span></a>.</li>
638
- <li>[windows] Updated bundled LZ4 to 1.7.5.</li>
639
- <li>[cache] Supported persistent cache feature.</li>
640
- <li>[<a class="reference internal" href="reference/commands/log_level.html"><span class="doc">log_level</span></a>] Update English documentation.</li>
641
- <li>Added the following APIs:<ul>
642
- <li><code class="docutils literal"><span class="pre">grn_set_default_cache_base_path()</span></code></li>
643
- <li><code class="docutils literal"><span class="pre">grn_get_default_cache_base_path()</span></code></li>
644
- <li><code class="docutils literal"><span class="pre">grn_persistent_cache_open()</span></code></li>
645
- <li><code class="docutils literal"><span class="pre">grn_cache_default_open()</span></code></li>
646
- </ul>
647
- </li>
648
- <li>[<a class="reference internal" href="reference/executables/groonga.html#cmdoption-groonga-cache-base-path"><code class="xref std std-option docutils literal"><span class="pre">groonga</span> <span class="pre">--cache-base-path</span></code></a>] Added a new option to use
649
- persistent cache.</li>
650
- <li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>]
1541
+ <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldowns-label-columns-name-window-group-keys"><span class="std std-ref">drilldowns[${LABEL}].columns[${NAME}].window.group_keys</span></a>.</p></li>
1542
+ <li><p>[windows] Updated bundled LZ4 to 1.7.5.</p></li>
1543
+ <li><p>[cache] Supported persistent cache feature.</p></li>
1544
+ <li><p>[<a class="reference internal" href="reference/commands/log_level.html"><span class="doc">log_level</span></a>] Update English documentation.</p></li>
1545
+ <li><p>Added the following APIs:</p>
1546
+ <ul>
1547
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_set_default_cache_base_path()</span></code></p></li>
1548
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_get_default_cache_base_path()</span></code></p></li>
1549
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_persistent_cache_open()</span></code></p></li>
1550
+ <li><p><code class="docutils literal notranslate"><span class="pre">grn_cache_default_open()</span></code></p></li>
1551
+ </ul>
1552
+ </li>
1553
+ <li><p>[<a class="reference internal" href="reference/executables/groonga.html#cmdoption-groonga-cache-base-path"><code class="xref std std-option docutils literal notranslate"><span class="pre">groonga</span> <span class="pre">--cache-base-path</span></code></a>] Added a new option to use
1554
+ persistent cache.</p></li>
1555
+ <li><p>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>]
651
1556
  [<a class="reference internal" href="reference/executables/groonga-httpd.html#groonga-httpd-groonga-cache-base-path"><span class="std std-ref">groonga_cache_base_path</span></a>] Added new
652
- configuration to use persistent cache.</li>
653
- <li>[windows] Updated bundled msgpack to 2.1.1.</li>
654
- <li>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] Supported not only
655
- column inspection, but also index column statistics.</li>
656
- <li>Supported index search for &quot;<code class="docutils literal"><span class="pre">.*</span></code>&quot; regexp pattern. This feature is
1557
+ configuration to use persistent cache.</p></li>
1558
+ <li><p>[windows] Updated bundled msgpack to 2.1.1.</p></li>
1559
+ <li><p>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] Supported not only
1560
+ column inspection, but also index column statistics.</p></li>
1561
+ <li><p>Supported index search for “<code class="docutils literal notranslate"><span class="pre">.*</span></code>” regexp pattern. This feature is
657
1562
  enabled by default. Set
658
- <code class="docutils literal"><span class="pre">GRN_SCAN_INFO_REGEXP_DOT_ASTERISK_ENABLE=no</span></code> environment variable
659
- to disable this feature.</li>
660
- <li>[<a class="reference internal" href="reference/functions/in_records.html"><span class="doc">in_records</span></a>] Added function to use an
661
- existing table as condition patterns.</li>
662
- <li>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 12.04 (Precise Pangolin)
663
- support because of EOL.</li>
1563
+ <code class="docutils literal notranslate"><span class="pre">GRN_SCAN_INFO_REGEXP_DOT_ASTERISK_ENABLE=no</span></code> environment variable
1564
+ to disable this feature.</p></li>
1565
+ <li><p>[<a class="reference internal" href="reference/functions/in_records.html"><span class="doc">in_records</span></a>] Added function to use an
1566
+ existing table as condition patterns.</p></li>
1567
+ <li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 12.04 (Precise Pangolin)
1568
+ support because of EOL.</p></li>
664
1569
  </ul>
665
1570
  </div>
666
- <div class="section" id="id24">
667
- <h3>Fixes<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
1571
+ <div class="section" id="id60">
1572
+ <h3>Fixes<a class="headerlink" href="#id60" title="Permalink to this headline">¶</a></h3>
668
1573
  <ul class="simple">
669
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that wrong
1574
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that wrong
670
1575
  cache is used. This bug was occurred when dynamic column parameter
671
- is used.</li>
672
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that dynamic
673
- columns aren't created. It's occurred when no match case.</li>
674
- <li>[<a class="reference internal" href="reference/commands/reindex.html"><span class="doc">reindex</span></a>] Fixed a bug that data is lost
675
- by reindex. [GitHub#646]</li>
676
- <li>[httpd] Fixed a bug that response of <a class="reference internal" href="reference/commands/quit.html"><span class="doc">quit</span></a>
1576
+ is used.</p></li>
1577
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed a bug that dynamic
1578
+ columns arent created. Its occurred when no match case.</p></li>
1579
+ <li><p>[<a class="reference internal" href="reference/commands/reindex.html"><span class="doc">reindex</span></a>] Fixed a bug that data is lost
1580
+ by reindex. [GitHub#646]</p></li>
1581
+ <li><p>[httpd] Fixed a bug that response of <a class="reference internal" href="reference/commands/quit.html"><span class="doc">quit</span></a>
677
1582
  and <a class="reference internal" href="reference/commands/shutdown.html"><span class="doc">shutdown</span></a> is broken JSON when worker is
678
- running as another user. [GitHub ranguba/groonga-client#12]</li>
1583
+ running as another user. [GitHub ranguba/groonga-client#12]</p></li>
679
1584
  </ul>
680
1585
  </div>
681
1586
  </div>
682
1587
  <div class="section" id="release-7-0-1-2017-03-29">
683
1588
  <span id="release-7-0-1"></span><h2>Release 7.0.1 - 2017-03-29<a class="headerlink" href="#release-7-0-1-2017-03-29" title="Permalink to this headline">¶</a></h2>
684
- <div class="section" id="id25">
685
- <h3>Improvements<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
1589
+ <div class="section" id="id61">
1590
+ <h3>Improvements<a class="headerlink" href="#id61" title="Permalink to this headline">¶</a></h3>
686
1591
  <ul class="simple">
687
- <li>Exported the following API<ul>
688
- <li>grn_ii_cursor_next_pos()</li>
689
- <li>grn_table_apply_expr()</li>
690
- <li>grn_obj_is_data_column()</li>
691
- <li>grn_obj_is_expr()</li>
692
- <li>grn_obj_is_scalar_column()</li>
693
- </ul>
694
- </li>
695
- <li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported to dump weight reference
696
- vector.</li>
697
- <li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to load
698
- <code class="docutils literal"><span class="pre">array&lt;object&gt;</span></code> style weight vector column. The example of
699
- <code class="docutils literal"><span class="pre">array&lt;object&gt;</span></code> style is: <code class="docutils literal"><span class="pre">[{&quot;key1&quot;:</span> <span class="pre">weight1},</span> <span class="pre">{&quot;key2&quot;:</span>
700
- <span class="pre">weight2}]</span></code>.</li>
701
- <li>Supported to search <code class="docutils literal"><span class="pre">!(XXX</span> <span class="pre">OPERATOR</span> <span class="pre">VALUE)</span></code> by index. Supported
702
- operator is not only <code class="docutils literal"><span class="pre">&gt;</span></code> but also <code class="docutils literal"><span class="pre">&gt;=</span></code>, <code class="docutils literal"><span class="pre">&lt;</span></code>, <code class="docutils literal"><span class="pre">&lt;=</span></code>, <code class="docutils literal"><span class="pre">==</span></code>
703
- and <code class="docutils literal"><span class="pre">!=</span></code>.</li>
704
- <li>Supported index search for &quot;!(column == CONSTANT)&quot;. The example in
705
- this case is: <code class="docutils literal"><span class="pre">!(column</span> <span class="pre">==</span> <span class="pre">29)</span></code> and so on.</li>
706
- <li>Supported more &quot;!&quot; optimization in the following patterns.<ul>
707
- <li><code class="docutils literal"><span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;X&quot;)</span> <span class="pre">&amp;&amp;</span> <span class="pre">(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;Y&quot;)</span></code></li>
708
- <li><code class="docutils literal"><span class="pre">(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;Y&quot;)</span> <span class="pre">&amp;&amp;</span> <span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;X&quot;)</span></code></li>
709
- <li><code class="docutils literal"><span class="pre">(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;Y&quot;)</span> <span class="pre">&amp;!</span> <span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;X&quot;)</span></code></li>
710
- </ul>
711
- </li>
712
- <li>Supported to search <code class="docutils literal"><span class="pre">XXX</span> <span class="pre">||</span> <span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;xxx&quot;)</span></code> by index.</li>
713
- <li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Changed to use <code class="docutils literal"><span class="pre">'{&quot;x&quot;:</span> <span class="pre">1,</span> <span class="pre">&quot;y&quot;:</span>
714
- <span class="pre">2}'</span></code> style for not referenced weight vector. This change doesn't
715
- affect to old Groonga because it already supports one.</li>
716
- <li>[experimental] Supported <code class="docutils literal"><span class="pre">GRN_ORDER_BY_ESTIMATED_SIZE_ENABLE</span></code>
1592
+ <li><p>Exported the following API</p>
1593
+ <ul>
1594
+ <li><p>grn_ii_cursor_next_pos()</p></li>
1595
+ <li><p>grn_table_apply_expr()</p></li>
1596
+ <li><p>grn_obj_is_data_column()</p></li>
1597
+ <li><p>grn_obj_is_expr()</p></li>
1598
+ <li><p>grn_obj_is_scalar_column()</p></li>
1599
+ </ul>
1600
+ </li>
1601
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported to dump weight reference
1602
+ vector.</p></li>
1603
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to load
1604
+ <code class="docutils literal notranslate"><span class="pre">array&lt;object&gt;</span></code> style weight vector column. The example of
1605
+ <code class="docutils literal notranslate"><span class="pre">array&lt;object&gt;</span></code> style is: <code class="docutils literal notranslate"><span class="pre">[{&quot;key1&quot;:</span> <span class="pre">weight1},</span> <span class="pre">{&quot;key2&quot;:</span>
1606
+ <span class="pre">weight2}]</span></code>.</p></li>
1607
+ <li><p>Supported to search <code class="docutils literal notranslate"><span class="pre">!(XXX</span> <span class="pre">OPERATOR</span> <span class="pre">VALUE)</span></code> by index. Supported
1608
+ operator is not only <code class="docutils literal notranslate"><span class="pre">&gt;</span></code> but also <code class="docutils literal notranslate"><span class="pre">&gt;=</span></code>, <code class="docutils literal notranslate"><span class="pre">&lt;</span></code>, <code class="docutils literal notranslate"><span class="pre">&lt;=</span></code>, <code class="docutils literal notranslate"><span class="pre">==</span></code>
1609
+ and <code class="docutils literal notranslate"><span class="pre">!=</span></code>.</p></li>
1610
+ <li><p>Supported index search for “!(column == CONSTANT)”. The example in
1611
+ this case is: <code class="docutils literal notranslate"><span class="pre">!(column</span> <span class="pre">==</span> <span class="pre">29)</span></code> and so on.</p></li>
1612
+ <li><p>Supported more “!” optimization in the following patterns.</p>
1613
+ <ul>
1614
+ <li><p><code class="docutils literal notranslate"><span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;X&quot;)</span> <span class="pre">&amp;&amp;</span> <span class="pre">(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;Y&quot;)</span></code></p></li>
1615
+ <li><p><code class="docutils literal notranslate"><span class="pre">(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;Y&quot;)</span> <span class="pre">&amp;&amp;</span> <span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;X&quot;)</span></code></p></li>
1616
+ <li><p><code class="docutils literal notranslate"><span class="pre">(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;Y&quot;)</span> <span class="pre">&amp;!</span> <span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;X&quot;)</span></code></p></li>
1617
+ </ul>
1618
+ </li>
1619
+ <li><p>Supported to search <code class="docutils literal notranslate"><span class="pre">XXX</span> <span class="pre">||</span> <span class="pre">!(column</span> <span class="pre">&#64;</span> <span class="pre">&quot;xxx&quot;)</span></code> by index.</p></li>
1620
+ <li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Changed to use <code class="docutils literal notranslate"><span class="pre">'{&quot;x&quot;:</span> <span class="pre">1,</span> <span class="pre">&quot;y&quot;:</span>
1621
+ <span class="pre">2}'</span></code> style for not referenced weight vector. This change doesn’t
1622
+ affect to old Groonga because it already supports one.</p></li>
1623
+ <li><p>[experimental] Supported <code class="docutils literal notranslate"><span class="pre">GRN_ORDER_BY_ESTIMATED_SIZE_ENABLE</span></code>
717
1624
  environment variable. This variable controls whether query
718
1625
  optimization which is based on estimated size is applied or not.
719
1626
  This feature is disabled by default. Set
720
- <code class="docutils literal"><span class="pre">GRN_ORDER_BY_ESTIMATED_SIZE_ENABLE=yes</span></code> if you want to try it.</li>
721
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added query log for <code class="docutils literal"><span class="pre">columns</span></code>,
722
- <code class="docutils literal"><span class="pre">drilldown</span></code> evaluation.</li>
723
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Changed query log format for
724
- <code class="docutils literal"><span class="pre">drilldown</span></code>. This is backward incompatible change, but it only
725
- affects users who convert query log by own programs.</li>
726
- <li>[<a class="reference internal" href="reference/commands/table_remove.html"><span class="doc">table_remove</span></a>] Reduced temporary memory
727
- usage. It's enabled when the number of max threads is 0.</li>
728
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] <code class="docutils literal"><span class="pre">columns[LABEL](N)</span></code> is used
729
- for query log format instead of <code class="docutils literal"><span class="pre">columns(N)[LABEL]</span></code>..</li>
730
- <li>[<a class="reference internal" href="tutorial/query_expansion.html"><span class="doc">Query expansion</span></a>] Updated example to use vector
731
- column because it is recommended way. [Reported by Gurunavi, Inc]</li>
732
- <li>Supported to detect canceled request while locking. It fixes the
733
- problem that <code class="docutils literal"><span class="pre">request_cancel</span></code> is ignored unexpectedly while locking.</li>
734
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported <code class="docutils literal"><span class="pre">initial</span></code>
735
- and <code class="docutils literal"><span class="pre">filtered</span></code> stage dynamic columns. The examples are:
736
- <code class="docutils literal"><span class="pre">--columns[LABEL].stage</span> <span class="pre">initial</span></code> or <code class="docutils literal"><span class="pre">--columns[LABEL].stage</span>
737
- <span class="pre">filtered</span></code>.</li>
738
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported
739
- <code class="docutils literal"><span class="pre">match_columns</span></code>, <code class="docutils literal"><span class="pre">query</span></code> and <code class="docutils literal"><span class="pre">drilldown_filter</span></code> option.</li>
740
- <li>[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] Supported similar
741
- search.</li>
742
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported <code class="docutils literal"><span class="pre">initial</span></code>
1627
+ <code class="docutils literal notranslate"><span class="pre">GRN_ORDER_BY_ESTIMATED_SIZE_ENABLE=yes</span></code> if you want to try it.</p></li>
1628
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added query log for <code class="docutils literal notranslate"><span class="pre">columns</span></code>,
1629
+ <code class="docutils literal notranslate"><span class="pre">drilldown</span></code> evaluation.</p></li>
1630
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Changed query log format for
1631
+ <code class="docutils literal notranslate"><span class="pre">drilldown</span></code>. This is backward incompatible change, but it only
1632
+ affects users who convert query log by own programs.</p></li>
1633
+ <li><p>[<a class="reference internal" href="reference/commands/table_remove.html"><span class="doc">table_remove</span></a>] Reduced temporary memory
1634
+ usage. Its enabled when the number of max threads is 0.</p></li>
1635
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] <code class="docutils literal notranslate"><span class="pre">columns[LABEL](N)</span></code> is used
1636
+ for query log format instead of <code class="docutils literal notranslate"><span class="pre">columns(N)[LABEL]</span></code>..</p></li>
1637
+ <li><p>[<a class="reference internal" href="tutorial/query_expansion.html"><span class="doc">Query expansion</span></a>] Updated example to use vector
1638
+ column because it is recommended way. [Reported by Gurunavi, Inc]</p></li>
1639
+ <li><p>Supported to detect canceled request while locking. It fixes the
1640
+ problem that <code class="docutils literal notranslate"><span class="pre">request_cancel</span></code> is ignored unexpectedly while locking.</p></li>
1641
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">initial</span></code>
1642
+ and <code class="docutils literal notranslate"><span class="pre">filtered</span></code> stage dynamic columns. The examples are:
1643
+ <code class="docutils literal notranslate"><span class="pre">--columns[LABEL].stage</span> <span class="pre">initial</span></code> or <code class="docutils literal notranslate"><span class="pre">--columns[LABEL].stage</span>
1644
+ <span class="pre">filtered</span></code>.</p></li>
1645
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported
1646
+ <code class="docutils literal notranslate"><span class="pre">match_columns</span></code>, <code class="docutils literal notranslate"><span class="pre">query</span></code> and <code class="docutils literal notranslate"><span class="pre">drilldown_filter</span></code> option.</p></li>
1647
+ <li><p>[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] Supported similar
1648
+ search.</p></li>
1649
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">initial</span></code>
743
1650
  and stage dynamic columns in labeled drilldown. The example is:
744
- <code class="docutils literal"><span class="pre">--drilldowns[LABEL].stage</span> <span class="pre">initial</span></code>.</li>
745
- <li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported window
746
- function in dynamic column.</li>
747
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added documentation about
748
- dynamic columns.</li>
749
- <li>[<a class="reference internal" href="reference/window_function.html"><span class="doc">Window function</span></a>] Added section about window
750
- functions.</li>
751
- <li>[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>] Dropped CentOS 5 support because of EOL.</li>
752
- <li>[httpd] Updated bundled nginx to 1.11.12</li>
753
- <li>Supported to disable AND match optimization by environment variable.
1651
+ <code class="docutils literal notranslate"><span class="pre">--drilldowns[LABEL].stage</span> <span class="pre">initial</span></code>.</p></li>
1652
+ <li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported window
1653
+ function in dynamic column.</p></li>
1654
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added documentation about
1655
+ dynamic columns.</p></li>
1656
+ <li><p>[<a class="reference internal" href="reference/window_function.html"><span class="doc">Window function</span></a>] Added section about window
1657
+ functions.</p></li>
1658
+ <li><p>[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>] Dropped CentOS 5 support because of EOL.</p></li>
1659
+ <li><p>[httpd] Updated bundled nginx to 1.11.12</p></li>
1660
+ <li><p>Supported to disable AND match optimization by environment variable.
754
1661
  You can disable this feature by
755
- <code class="docutils literal"><span class="pre">GRN_TABLE_SELECT_AND_MIN_SKIP_ENABLE=no</span></code>. This feature is enable
756
- by default.</li>
757
- <li>[<a class="reference internal" href="reference/functions/vector_new.html"><span class="doc">vector_new</span></a>] Added a new function to
758
- create a new vector.</li>
759
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added documentation about
760
- <code class="docutils literal"><span class="pre">drilldown_filter</span></code>.</li>
1662
+ <code class="docutils literal notranslate"><span class="pre">GRN_TABLE_SELECT_AND_MIN_SKIP_ENABLE=no</span></code>. This feature is enable
1663
+ by default.</p></li>
1664
+ <li><p>[<a class="reference internal" href="reference/functions/vector_new.html"><span class="doc">vector_new</span></a>] Added a new function to
1665
+ create a new vector.</p></li>
1666
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added documentation about
1667
+ <code class="docutils literal notranslate"><span class="pre">drilldown_filter</span></code>.</p></li>
761
1668
  </ul>
762
1669
  </div>
763
- <div class="section" id="id26">
764
- <h3>Fixes<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
1670
+ <div class="section" id="id62">
1671
+ <h3>Fixes<a class="headerlink" href="#id62" title="Permalink to this headline">¶</a></h3>
765
1672
  <ul class="simple">
766
- <li>[<a class="reference internal" href="reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] Fixed a crash bug against
767
- temporary database.</li>
768
- <li>Fixed a problem that dynamically updated index size was increased
769
- for natural language since Grooonga 6.1.4.</li>
770
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Fixed a bug that &quot;A &amp;&amp; B.C &#64; X&quot;
771
- may not return records that should be matched.</li>
772
- <li>Fixed a conflict with <code class="docutils literal"><span class="pre">grn_io_flush()</span></code> and
773
- <code class="docutils literal"><span class="pre">grn_io_expire()</span></code>. Without this change, if <code class="docutils literal"><span class="pre">io_flush</span></code> and <code class="docutils literal"><span class="pre">load</span></code>
1673
+ <li><p>[<a class="reference internal" href="reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] Fixed a crash bug against
1674
+ temporary database.</p></li>
1675
+ <li><p>Fixed a problem that dynamically updated index size was increased
1676
+ for natural language since Grooonga 6.1.4.</p></li>
1677
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Fixed a bug that A &amp;&amp; B.C &#64; X
1678
+ may not return records that should be matched.</p></li>
1679
+ <li><p>Fixed a conflict with <code class="docutils literal notranslate"><span class="pre">grn_io_flush()</span></code> and
1680
+ <code class="docutils literal notranslate"><span class="pre">grn_io_expire()</span></code>. Without this change, if <code class="docutils literal notranslate"><span class="pre">io_flush</span></code> and <code class="docutils literal notranslate"><span class="pre">load</span></code>
774
1681
  command are executed simultaneously in specific timing, it causes a
775
- crash bug by access violation.</li>
776
- <li>[<a class="reference internal" href="reference/commands/logical_table_remove.html"><span class="doc">logical_table_remove</span></a>] Fixed a crash bug
777
- when the max number of threads is 1.</li>
1682
+ crash bug by access violation.</p></li>
1683
+ <li><p>[<a class="reference internal" href="reference/commands/logical_table_remove.html"><span class="doc">logical_table_remove</span></a>] Fixed a crash bug
1684
+ when the max number of threads is 1.</p></li>
778
1685
  </ul>
779
1686
  </div>
780
- <div class="section" id="id27">
781
- <h3>Thanks<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
1687
+ <div class="section" id="id63">
1688
+ <h3>Thanks<a class="headerlink" href="#id63" title="Permalink to this headline">¶</a></h3>
782
1689
  <ul class="simple">
783
- <li>Gurunavi, Inc.</li>
1690
+ <li><p>Gurunavi, Inc.</p></li>
784
1691
  </ul>
785
1692
  </div>
786
1693
  </div>
787
1694
  <div class="section" id="release-7-0-0-2017-02-09">
788
1695
  <span id="release-7-0-0"></span><h2>Release 7.0.0 - 2017-02-09<a class="headerlink" href="#release-7-0-0-2017-02-09" title="Permalink to this headline">¶</a></h2>
789
- <div class="section" id="id28">
790
- <h3>Improvements<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
1696
+ <div class="section" id="id64">
1697
+ <h3>Improvements<a class="headerlink" href="#id64" title="Permalink to this headline">¶</a></h3>
791
1698
  <ul class="simple">
792
- <li>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] Supported sequential search
793
- for reference vector column. [Patch by Naoya Murakami] [GitHub#629]</li>
794
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Changed to report error instead
795
- of ignoring on invalid <code class="docutils literal"><span class="pre">drilldown[LABEL].sort_keys</span></code>.</li>
796
- <li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Removed needless metadata
1699
+ <li><p>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] Supported sequential search
1700
+ for reference vector column. [Patch by Naoya Murakami] [GitHub#629]</p></li>
1701
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Changed to report error instead
1702
+ of ignoring on invalid <code class="docutils literal notranslate"><span class="pre">drilldown[LABEL].sort_keys</span></code>.</p></li>
1703
+ <li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Removed needless metadata
797
1704
  updates on DB. It reduces the case that database lock remains
798
- even though <code class="docutils literal"><span class="pre">select</span></code> command is executed. [Reported by aomi-n]</li>
799
- <li>[<a class="reference internal" href="reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] Changed to clear metadata lock
800
- by lock_clear against DB.</li>
801
- <li>[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>] Enabled EPEL by default to install Groonga
802
- on Amazon Linux.</li>
803
- <li>[<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a>] Supported &quot;&#64;X&quot; style in script
804
- syntax for prefix(&quot;&#64;^&quot;), suffix(&quot;&#64;$&quot;), regexp(&quot;&#64;^&quot;) search.</li>
805
- <li>[<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a>] Added documentation about
806
- available list of mode. The default mode is <code class="docutils literal"><span class="pre">MATCH</span></code> (&quot;&#64;&quot;) mode
807
- which executes full text search.</li>
808
- <li>[rpm][centos] Supported groonga-token-filter-stem package which
809
- provides stemming feature by <code class="docutils literal"><span class="pre">TokenFilterStem</span></code> token filter on
810
- CentOS 7. [GitHub#633] [Reported by Tim Bellefleur]</li>
811
- <li>[<a class="reference internal" href="reference/window_functions/window_record_number.html"><span class="doc">window_record_number</span></a>] Marked
812
- <code class="docutils literal"><span class="pre">record_number</span></code> as deprecated. Use <code class="docutils literal"><span class="pre">window_record_number</span></code>
813
- instead. <code class="docutils literal"><span class="pre">record_number</span></code> is still available for backward
814
- compatibility.</li>
815
- <li>[<a class="reference internal" href="reference/window_functions/window_sum.html"><span class="doc">window_sum</span></a>] Added <code class="docutils literal"><span class="pre">window_sum</span></code>
816
- window function. It's similar behavior to window function sum() on
817
- PostgreSQL.</li>
818
- <li>Supported to construct offline indexing with in-memory (temporary)
819
- <code class="docutils literal"><span class="pre">TABLE_DAT_KEY</span></code> table. [GitHub#623] [Reported by Naoya Murakami]</li>
820
- <li>[onigmo] Updated bundled Onigmo to 6.1.1.</li>
821
- <li>Supported <code class="docutils literal"><span class="pre">columns[LABEL].window.group_keys</span></code>. It's used to apply
822
- window function for every group.</li>
823
- <li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to report error on
824
- invalid key. It enables you to detect mismatch type of key.</li>
825
- <li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported <code class="docutils literal"><span class="pre">--output_errors</span> <span class="pre">yes</span></code>
826
- option. If you specify &quot;yes&quot;, you can get errors for each load
827
- failed record. Note that this feature requires command version 3.</li>
828
- <li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Improve error message on table key
829
- cast failure. Instead of &quot;cast failed&quot;, type of table key and target
830
- type of table key are also contained in error message.</li>
831
- <li>[httpd] Updated bundled nginx to 1.11.9.</li>
1705
+ even though <code class="docutils literal notranslate"><span class="pre">select</span></code> command is executed. [Reported by aomi-n]</p></li>
1706
+ <li><p>[<a class="reference internal" href="reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] Changed to clear metadata lock
1707
+ by lock_clear against DB.</p></li>
1708
+ <li><p>[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>] Enabled EPEL by default to install Groonga
1709
+ on Amazon Linux.</p></li>
1710
+ <li><p>[<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a>] Supported “&#64;X style in script
1711
+ syntax for prefix(“&#64;^”), suffix(“&#64;$”), regexp(“&#64;^”) search.</p></li>
1712
+ <li><p>[<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a>] Added documentation about
1713
+ available list of mode. The default mode is <code class="docutils literal notranslate"><span class="pre">MATCH</span></code> (“&#64;”) mode
1714
+ which executes full text search.</p></li>
1715
+ <li><p>[rpm][centos] Supported groonga-token-filter-stem package which
1716
+ provides stemming feature by <code class="docutils literal notranslate"><span class="pre">TokenFilterStem</span></code> token filter on
1717
+ CentOS 7. [GitHub#633] [Reported by Tim Bellefleur]</p></li>
1718
+ <li><p>[<a class="reference internal" href="reference/window_functions/window_record_number.html"><span class="doc">window_record_number</span></a>] Marked
1719
+ <code class="docutils literal notranslate"><span class="pre">record_number</span></code> as deprecated. Use <code class="docutils literal notranslate"><span class="pre">window_record_number</span></code>
1720
+ instead. <code class="docutils literal notranslate"><span class="pre">record_number</span></code> is still available for backward
1721
+ compatibility.</p></li>
1722
+ <li><p>[<a class="reference internal" href="reference/window_functions/window_sum.html"><span class="doc">window_sum</span></a>] Added <code class="docutils literal notranslate"><span class="pre">window_sum</span></code>
1723
+ window function. Its similar behavior to window function sum() on
1724
+ PostgreSQL.</p></li>
1725
+ <li><p>Supported to construct offline indexing with in-memory (temporary)
1726
+ <code class="docutils literal notranslate"><span class="pre">TABLE_DAT_KEY</span></code> table. [GitHub#623] [Reported by Naoya Murakami]</p></li>
1727
+ <li><p>[onigmo] Updated bundled Onigmo to 6.1.1.</p></li>
1728
+ <li><p>Supported <code class="docutils literal notranslate"><span class="pre">columns[LABEL].window.group_keys</span></code>. Its used to apply
1729
+ window function for every group.</p></li>
1730
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to report error on
1731
+ invalid key. It enables you to detect mismatch type of key.</p></li>
1732
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported <code class="docutils literal notranslate"><span class="pre">--output_errors</span> <span class="pre">yes</span></code>
1733
+ option. If you specify yes”, you can get errors for each load
1734
+ failed record. Note that this feature requires command version 3.</p></li>
1735
+ <li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Improve error message on table key
1736
+ cast failure. Instead of cast failed”, type of table key and target
1737
+ type of table key are also contained in error message.</p></li>
1738
+ <li><p>[httpd] Updated bundled nginx to 1.11.9.</p></li>
832
1739
  </ul>
833
1740
  </div>
834
- <div class="section" id="id29">
835
- <h3>Fixes<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
1741
+ <div class="section" id="id65">
1742
+ <h3>Fixes<a class="headerlink" href="#id65" title="Permalink to this headline">¶</a></h3>
836
1743
  <ul class="simple">
837
- <li>Fixed a bug that nonexistent sort keys for <code class="docutils literal"><span class="pre">drilldowns[LABEL]</span></code> or
838
- <code class="docutils literal"><span class="pre">slices[LABEL]</span></code> causes invalid JSON parse error. [Patch by Naoya
839
- Murakami] [GitHub#627]</li>
840
- <li>Fixed a bug that access to nonexistent sub records for group causes
1744
+ <li><p>Fixed a bug that nonexistent sort keys for <code class="docutils literal notranslate"><span class="pre">drilldowns[LABEL]</span></code> or
1745
+ <code class="docutils literal notranslate"><span class="pre">slices[LABEL]</span></code> causes invalid JSON parse error. [Patch by Naoya
1746
+ Murakami] [GitHub#627]</p></li>
1747
+ <li><p>Fixed a bug that access to nonexistent sub records for group causes
841
1748
  a crash. For example, This bug affects the case when you use
842
- <code class="docutils literal"><span class="pre">drilldowns[LABEL].sort_keys</span> <span class="pre">_sum</span></code> without specifying
843
- <code class="docutils literal"><span class="pre">calc_types</span></code>. [Patch by Naoya Murakami] [GitHub#625]</li>
844
- <li>Fixed a crash bug when tokenizer has an error. It's caused when
1749
+ <code class="docutils literal notranslate"><span class="pre">drilldowns[LABEL].sort_keys</span> <span class="pre">_sum</span></code> without specifying
1750
+ <code class="docutils literal notranslate"><span class="pre">calc_types</span></code>. [Patch by Naoya Murakami] [GitHub#625]</p></li>
1751
+ <li><p>Fixed a crash bug when tokenizer has an error. Its caused when
845
1752
  tokenizer and token filter are registered and tokenizer has an
846
- error.</li>
847
- <li>[<a class="reference internal" href="reference/window_functions/window_record_number.html"><span class="doc">window_record_number</span></a>] Fixed a
1753
+ error.</p></li>
1754
+ <li><p>[<a class="reference internal" href="reference/window_functions/window_record_number.html"><span class="doc">window_record_number</span></a>] Fixed a
848
1755
  bug that arguments for window function is not correctly
849
- passed. [GitHub#634][Patch by Naoya Murakami]</li>
1756
+ passed. [GitHub#634][Patch by Naoya Murakami]</p></li>
850
1757
  </ul>
851
1758
  </div>
852
- <div class="section" id="id30">
853
- <h3>Thanks<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
1759
+ <div class="section" id="id66">
1760
+ <h3>Thanks<a class="headerlink" href="#id66" title="Permalink to this headline">¶</a></h3>
854
1761
  <ul class="simple">
855
- <li>Naoya Murakami</li>
856
- <li>aomi-n</li>
1762
+ <li><p>Naoya Murakami</p></li>
1763
+ <li><p>aomi-n</p></li>
857
1764
  </ul>
858
1765
  </div>
859
1766
  </div>
@@ -1007,78 +1914,159 @@ passed. [GitHub#634][Patch by Naoya Murakami]</li>
1007
1914
  </div>
1008
1915
  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
1009
1916
  <div class="sphinxsidebarwrapper">
1010
- <h3><a href="index.html">Table Of Contents</a></h3>
1917
+ <h3><a href="index.html">Table of Contents</a></h3>
1011
1918
  <ul>
1012
1919
  <li><a class="reference internal" href="#">News</a><ul>
1013
- <li><a class="reference internal" href="#release-7-1-1-2018-01-29">Release 7.1.1 - 2018-01-29</a><ul>
1920
+ <li><a class="reference internal" href="#release-9-0-2-2019-04-29">Release 9.0.2 - 2019-04-29</a><ul>
1014
1921
  <li><a class="reference internal" href="#improvements">Improvements</a></li>
1015
1922
  <li><a class="reference internal" href="#fixes">Fixes</a></li>
1016
1923
  <li><a class="reference internal" href="#thanks">Thanks</a></li>
1017
1924
  </ul>
1018
1925
  </li>
1019
- <li><a class="reference internal" href="#release-7-1-0-2017-12-29">Release 7.1.0 - 2017-12-29</a><ul>
1926
+ <li><a class="reference internal" href="#release-9-0-1-2019-03-29">Release 9.0.1 - 2019-03-29</a><ul>
1020
1927
  <li><a class="reference internal" href="#id1">Improvements</a></li>
1021
1928
  <li><a class="reference internal" href="#id2">Fixes</a></li>
1022
1929
  <li><a class="reference internal" href="#id3">Thanks</a></li>
1023
1930
  </ul>
1024
1931
  </li>
1025
- <li><a class="reference internal" href="#release-7-0-9-2017-11-29">Release 7.0.9 - 2017-11-29</a><ul>
1932
+ <li><a class="reference internal" href="#release-9-0-0-2019-02-09">Release 9.0.0 - 2019-02-09</a><ul>
1026
1933
  <li><a class="reference internal" href="#id4">Improvements</a></li>
1027
- <li><a class="reference internal" href="#id5">Fixes</a></li>
1028
- <li><a class="reference internal" href="#id6">Thanks</a></li>
1029
1934
  </ul>
1030
1935
  </li>
1031
- <li><a class="reference internal" href="#release-7-0-8-2017-10-29">Release 7.0.8 - 2017-10-29</a><ul>
1936
+ <li><a class="reference internal" href="#release-8-1-1-2019-01-29">Release 8.1.1 - 2019-01-29</a><ul>
1937
+ <li><a class="reference internal" href="#id5">Improvements</a></li>
1938
+ <li><a class="reference internal" href="#id6">Fixes</a></li>
1939
+ </ul>
1940
+ </li>
1941
+ <li><a class="reference internal" href="#release-8-1-0-2018-12-29">Release 8.1.0 - 2018-12-29</a><ul>
1032
1942
  <li><a class="reference internal" href="#id7">Improvements</a></li>
1033
1943
  <li><a class="reference internal" href="#id8">Fixes</a></li>
1034
1944
  </ul>
1035
1945
  </li>
1036
- <li><a class="reference internal" href="#release-7-0-7-2017-09-29">Release 7.0.7 - 2017-09-29</a><ul>
1946
+ <li><a class="reference internal" href="#release-8-0-9-2018-11-29">Release 8.0.9 - 2018-11-29</a><ul>
1037
1947
  <li><a class="reference internal" href="#id9">Improvements</a></li>
1038
1948
  <li><a class="reference internal" href="#id10">Fixes</a></li>
1949
+ <li><a class="reference internal" href="#id11">Thanks</a></li>
1039
1950
  </ul>
1040
1951
  </li>
1041
- <li><a class="reference internal" href="#release-7-0-6-2017-08-29">Release 7.0.6 - 2017-08-29</a><ul>
1042
- <li><a class="reference internal" href="#id11">Improvements</a></li>
1043
- <li><a class="reference internal" href="#id12">Fixes</a></li>
1044
- <li><a class="reference internal" href="#id13">Thanks</a></li>
1952
+ <li><a class="reference internal" href="#release-8-0-8-2018-10-29">Release 8.0.8 - 2018-10-29</a><ul>
1953
+ <li><a class="reference internal" href="#id12">Improvements</a></li>
1954
+ <li><a class="reference internal" href="#id13">Fixes</a></li>
1955
+ <li><a class="reference internal" href="#id14">Thanks</a></li>
1045
1956
  </ul>
1046
1957
  </li>
1047
- <li><a class="reference internal" href="#release-7-0-5-2017-07-29">Release 7.0.5 - 2017-07-29</a><ul>
1048
- <li><a class="reference internal" href="#id14">Improvements</a></li>
1049
- <li><a class="reference internal" href="#id15">Fixes</a></li>
1050
- <li><a class="reference internal" href="#id16">Thanks</a></li>
1958
+ <li><a class="reference internal" href="#release-8-0-7-2018-09-29">Release 8.0.7 - 2018-09-29</a><ul>
1959
+ <li><a class="reference internal" href="#id15">Improvements</a></li>
1960
+ <li><a class="reference internal" href="#id16">Fixes</a></li>
1051
1961
  </ul>
1052
1962
  </li>
1053
- <li><a class="reference internal" href="#release-7-0-4-2017-06-29">Release 7.0.4 - 2017-06-29</a><ul>
1963
+ <li><a class="reference internal" href="#release-8-0-6-2018-08-29">Release 8.0.6 - 2018-08-29</a><ul>
1054
1964
  <li><a class="reference internal" href="#id17">Improvements</a></li>
1055
1965
  <li><a class="reference internal" href="#id18">Fixes</a></li>
1056
- <li><a class="reference internal" href="#id19">Thanks</a></li>
1057
1966
  </ul>
1058
1967
  </li>
1059
- <li><a class="reference internal" href="#release-7-0-3-2017-05-29">Release 7.0.3 - 2017-05-29</a><ul>
1060
- <li><a class="reference internal" href="#id20">Improvements</a></li>
1061
- <li><a class="reference internal" href="#id21">Fixes</a></li>
1062
- <li><a class="reference internal" href="#id22">Thanks</a></li>
1968
+ <li><a class="reference internal" href="#release-8-0-5-2018-07-29">Release 8.0.5 - 2018-07-29</a><ul>
1969
+ <li><a class="reference internal" href="#id19">Improvements</a></li>
1970
+ <li><a class="reference internal" href="#id20">Fixes</a></li>
1063
1971
  </ul>
1064
1972
  </li>
1065
- <li><a class="reference internal" href="#release-7-0-2-2017-04-29">Release 7.0.2 - 2017-04-29</a><ul>
1973
+ <li><a class="reference internal" href="#release-8-0-4-2018-06-29">Release 8.0.4 - 2018-06-29</a><ul>
1974
+ <li><a class="reference internal" href="#id21">Improvements</a></li>
1975
+ <li><a class="reference internal" href="#id22">Fixes</a></li>
1976
+ </ul>
1977
+ </li>
1978
+ <li><a class="reference internal" href="#release-8-0-3-2018-05-29">Release 8.0.3 - 2018-05-29</a><ul>
1066
1979
  <li><a class="reference internal" href="#id23">Improvements</a></li>
1067
1980
  <li><a class="reference internal" href="#id24">Fixes</a></li>
1068
1981
  </ul>
1069
1982
  </li>
1070
- <li><a class="reference internal" href="#release-7-0-1-2017-03-29">Release 7.0.1 - 2017-03-29</a><ul>
1983
+ <li><a class="reference internal" href="#release-8-0-2-2018-04-29">Release 8.0.2 - 2018-04-29</a><ul>
1071
1984
  <li><a class="reference internal" href="#id25">Improvements</a></li>
1072
1985
  <li><a class="reference internal" href="#id26">Fixes</a></li>
1073
1986
  <li><a class="reference internal" href="#id27">Thanks</a></li>
1074
1987
  </ul>
1075
1988
  </li>
1076
- <li><a class="reference internal" href="#release-7-0-0-2017-02-09">Release 7.0.0 - 2017-02-09</a><ul>
1989
+ <li><a class="reference internal" href="#release-8-0-1-2018-03-29">Release 8.0.1 - 2018-03-29</a><ul>
1077
1990
  <li><a class="reference internal" href="#id28">Improvements</a></li>
1078
1991
  <li><a class="reference internal" href="#id29">Fixes</a></li>
1079
1992
  <li><a class="reference internal" href="#id30">Thanks</a></li>
1080
1993
  </ul>
1081
1994
  </li>
1995
+ <li><a class="reference internal" href="#release-8-0-0-2018-02-09">Release 8.0.0 - 2018-02-09</a><ul>
1996
+ <li><a class="reference internal" href="#id31">Improvements</a></li>
1997
+ <li><a class="reference internal" href="#id32">Fixes</a></li>
1998
+ <li><a class="reference internal" href="#id33">Thanks</a></li>
1999
+ </ul>
2000
+ </li>
2001
+ <li><a class="reference internal" href="#release-7-1-1-2018-01-29">Release 7.1.1 - 2018-01-29</a><ul>
2002
+ <li><a class="reference internal" href="#id34">Improvements</a></li>
2003
+ <li><a class="reference internal" href="#id35">Fixes</a></li>
2004
+ <li><a class="reference internal" href="#id36">Thanks</a></li>
2005
+ </ul>
2006
+ </li>
2007
+ <li><a class="reference internal" href="#release-7-1-0-2017-12-29">Release 7.1.0 - 2017-12-29</a><ul>
2008
+ <li><a class="reference internal" href="#id37">Improvements</a></li>
2009
+ <li><a class="reference internal" href="#id38">Fixes</a></li>
2010
+ <li><a class="reference internal" href="#id39">Thanks</a></li>
2011
+ </ul>
2012
+ </li>
2013
+ <li><a class="reference internal" href="#release-7-0-9-2017-11-29">Release 7.0.9 - 2017-11-29</a><ul>
2014
+ <li><a class="reference internal" href="#id40">Improvements</a></li>
2015
+ <li><a class="reference internal" href="#id41">Fixes</a></li>
2016
+ <li><a class="reference internal" href="#id42">Thanks</a></li>
2017
+ </ul>
2018
+ </li>
2019
+ <li><a class="reference internal" href="#release-7-0-8-2017-10-29">Release 7.0.8 - 2017-10-29</a><ul>
2020
+ <li><a class="reference internal" href="#id43">Improvements</a></li>
2021
+ <li><a class="reference internal" href="#id44">Fixes</a></li>
2022
+ </ul>
2023
+ </li>
2024
+ <li><a class="reference internal" href="#release-7-0-7-2017-09-29">Release 7.0.7 - 2017-09-29</a><ul>
2025
+ <li><a class="reference internal" href="#id45">Improvements</a></li>
2026
+ <li><a class="reference internal" href="#id46">Fixes</a></li>
2027
+ </ul>
2028
+ </li>
2029
+ <li><a class="reference internal" href="#release-7-0-6-2017-08-29">Release 7.0.6 - 2017-08-29</a><ul>
2030
+ <li><a class="reference internal" href="#id47">Improvements</a></li>
2031
+ <li><a class="reference internal" href="#id48">Fixes</a></li>
2032
+ <li><a class="reference internal" href="#id49">Thanks</a></li>
2033
+ </ul>
2034
+ </li>
2035
+ <li><a class="reference internal" href="#release-7-0-5-2017-07-29">Release 7.0.5 - 2017-07-29</a><ul>
2036
+ <li><a class="reference internal" href="#id50">Improvements</a></li>
2037
+ <li><a class="reference internal" href="#id51">Fixes</a></li>
2038
+ <li><a class="reference internal" href="#id52">Thanks</a></li>
2039
+ </ul>
2040
+ </li>
2041
+ <li><a class="reference internal" href="#release-7-0-4-2017-06-29">Release 7.0.4 - 2017-06-29</a><ul>
2042
+ <li><a class="reference internal" href="#id53">Improvements</a></li>
2043
+ <li><a class="reference internal" href="#id54">Fixes</a></li>
2044
+ <li><a class="reference internal" href="#id55">Thanks</a></li>
2045
+ </ul>
2046
+ </li>
2047
+ <li><a class="reference internal" href="#release-7-0-3-2017-05-29">Release 7.0.3 - 2017-05-29</a><ul>
2048
+ <li><a class="reference internal" href="#id56">Improvements</a></li>
2049
+ <li><a class="reference internal" href="#id57">Fixes</a></li>
2050
+ <li><a class="reference internal" href="#id58">Thanks</a></li>
2051
+ </ul>
2052
+ </li>
2053
+ <li><a class="reference internal" href="#release-7-0-2-2017-04-29">Release 7.0.2 - 2017-04-29</a><ul>
2054
+ <li><a class="reference internal" href="#id59">Improvements</a></li>
2055
+ <li><a class="reference internal" href="#id60">Fixes</a></li>
2056
+ </ul>
2057
+ </li>
2058
+ <li><a class="reference internal" href="#release-7-0-1-2017-03-29">Release 7.0.1 - 2017-03-29</a><ul>
2059
+ <li><a class="reference internal" href="#id61">Improvements</a></li>
2060
+ <li><a class="reference internal" href="#id62">Fixes</a></li>
2061
+ <li><a class="reference internal" href="#id63">Thanks</a></li>
2062
+ </ul>
2063
+ </li>
2064
+ <li><a class="reference internal" href="#release-7-0-0-2017-02-09">Release 7.0.0 - 2017-02-09</a><ul>
2065
+ <li><a class="reference internal" href="#id64">Improvements</a></li>
2066
+ <li><a class="reference internal" href="#id65">Fixes</a></li>
2067
+ <li><a class="reference internal" href="#id66">Thanks</a></li>
2068
+ </ul>
2069
+ </li>
1082
2070
  <li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
1083
2071
  </ul>
1084
2072
  </li>
@@ -1086,12 +2074,12 @@ passed. [GitHub#634][Patch by Naoya Murakami]</li>
1086
2074
 
1087
2075
  <div id="searchbox" style="display: none" role="search">
1088
2076
  <h3>Quick search</h3>
2077
+ <div class="searchformwrapper">
1089
2078
  <form class="search" action="search.html" method="get">
1090
- <div><input type="text" name="q" /></div>
1091
- <div><input type="submit" value="Go" /></div>
1092
- <input type="hidden" name="check_keywords" value="yes" />
1093
- <input type="hidden" name="area" value="default" />
2079
+ <input type="text" name="q" />
2080
+ <input type="submit" value="Go" />
1094
2081
  </form>
2082
+ </div>
1095
2083
  </div>
1096
2084
  <script type="text/javascript">$('#searchbox').show(0);</script>
1097
2085
  </div>
@@ -1104,11 +2092,11 @@ passed. [GitHub#634][Patch by Naoya Murakami]</li>
1104
2092
  <li class="right" style="margin-right: 10px">
1105
2093
  <a href="genindex.html" title="General Index"
1106
2094
  >index</a></li>
1107
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
2095
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
1108
2096
  </ul>
1109
2097
  </div>
1110
2098
  <div class="footer" role="contentinfo">
1111
- &#169; Copyright 2009-2018, Brazil, Inc.
2099
+ &#169; Copyright 2009-2019, Brazil, Inc.
1112
2100
  </div>
1113
2101
  </body>
1114
2102
  </html>