rroonga 4.0.0-x64-mingw32 → 4.0.1-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.yardopts +6 -0
 - data/doc/text/news.textile +26 -0
 - data/ext/groonga/rb-grn-column.c +42 -2
 - data/ext/groonga/rb-grn-index-column.c +57 -159
 - data/ext/groonga/rb-grn-object.c +7 -0
 - data/ext/groonga/rb-grn-table.c +19 -3
 - data/ext/groonga/rb-grn-utils.c +4 -1
 - data/ext/groonga/rb-grn-variable-size-column.c +405 -5
 - data/ext/groonga/rb-grn.h +18 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +46 -22
 - data/lib/groonga/expression-builder.rb +2 -4
 - data/lib/groonga/schema.rb +16 -234
 - data/rroonga-build.rb +3 -3
 - data/rroonga.gemspec +1 -1
 - data/test/test-array.rb +6 -5
 - data/test/test-column.rb +0 -14
 - data/test/test-database.rb +6 -5
 - data/test/test-double-array-trie.rb +6 -5
 - data/test/test-expression.rb +2 -2
 - data/test/test-hash.rb +6 -5
 - data/test/test-index-column.rb +163 -33
 - data/test/test-patricia-trie.rb +6 -5
 - data/test/test-schema-dumper.rb +39 -7
 - data/test/test-table-dumper.rb +46 -1
 - data/test/test-table-select-weight.rb +12 -0
 - data/test/test-variable-size-column.rb +87 -3
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/include/groonga/groonga.h +6 -1
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +41 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +25 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +333 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +37 -17
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +99 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +128 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +11 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/index.html +68 -67
 - data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news.html +247 -200
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +69 -68
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +153 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +857 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +8 -9
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +47 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +8 -9
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +193 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +8 -9
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +165 -13
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +25 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +50 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +34 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +46 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +36 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +62 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +140 -140
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +31 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +18 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +36 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +13 -13
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -17
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +41 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +25 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +333 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +37 -17
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +99 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +128 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +11 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/index.html +67 -66
 - data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news.html +262 -200
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -68
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +35 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +150 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +824 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +45 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +174 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +167 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +23 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +38 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +48 -48
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +44 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +19 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +60 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +23 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +19 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +34 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
 - data/vendor/local/share/man/ja/man1/groonga.1 +526 -73
 - data/vendor/local/share/man/man1/groonga.1 +552 -80
 - metadata +148 -139
 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>10. Limitations — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>10. Limitations — Groonga v4.0.1 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    './',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     ' 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '4.0.1',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga  
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v4.0.1 documentation" href="index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="next" title="11. トラブルシューティング" href="troubleshooting.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="prev" title="9.2. 検索" href="spec/search.html" /> 
         
     | 
| 
       31 
31 
     | 
    
         
             
              </head>
         
     | 
| 
         @@ -59,7 +59,7 @@ 
     | 
|
| 
       59 
59 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       60 
60 
     | 
    
         
             
                      <a href="spec/search.html" title="9.2. 検索"
         
     | 
| 
       61 
61 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       62 
     | 
    
         
            -
                    <li><a href="index.html">Groonga  
     | 
| 
      
 62 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1 documentation</a> »</li> 
         
     | 
| 
       63 
63 
     | 
    
         
             
                  </ul>
         
     | 
| 
       64 
64 
     | 
    
         
             
                </div>  
         
     | 
| 
       65 
65 
     | 
    
         | 
| 
         @@ -157,7 +157,7 @@ 
     | 
|
| 
       157 
157 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       158 
158 
     | 
    
         
             
                      <a href="spec/search.html" title="9.2. 検索"
         
     | 
| 
       159 
159 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       160 
     | 
    
         
            -
                    <li><a href="index.html">Groonga  
     | 
| 
      
 160 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1 documentation</a> »</li> 
         
     | 
| 
       161 
161 
     | 
    
         
             
                  </ul>
         
     | 
| 
       162 
162 
     | 
    
         
             
                </div>
         
     | 
| 
       163 
163 
     | 
    
         
             
                <div class="footer" role="contentinfo">
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>News — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>News — Groonga v4.0.1 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    './',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     ' 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '4.0.1',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga  
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v4.0.1 documentation" href="index.html" /> 
         
     | 
| 
       29 
29 
     | 
    
         
             
              </head>
         
     | 
| 
       30 
30 
     | 
    
         
             
              <body role="document">
         
     | 
| 
       31 
31 
     | 
    
         
             
            <div class="header">
         
     | 
| 
         @@ -51,7 +51,7 @@ 
     | 
|
| 
       51 
51 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       52 
52 
     | 
    
         
             
                      <a href="genindex.html" title="General Index"
         
     | 
| 
       53 
53 
     | 
    
         
             
                         accesskey="I">index</a></li>
         
     | 
| 
       54 
     | 
    
         
            -
                    <li><a href="index.html">Groonga  
     | 
| 
      
 54 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1 documentation</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
       57 
57 
     | 
    
         | 
| 
         @@ -62,21 +62,62 @@ 
     | 
|
| 
       62 
62 
     | 
    
         | 
| 
       63 
63 
     | 
    
         
             
              <div class="section" id="news">
         
     | 
| 
       64 
64 
     | 
    
         
             
            <h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 65 
     | 
    
         
            +
            <div class="section" id="release-4-0-1-2014-03-29">
         
     | 
| 
      
 66 
     | 
    
         
            +
            <span id="release-4-0-1"></span><h2>Release 4.0.1 - 2014/03/29<a class="headerlink" href="#release-4-0-1-2014-03-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <div class="section" id="improvements">
         
     | 
| 
      
 68 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 69 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 70 
     | 
    
         
            +
            <li>[doc] Added a link in return value to detailed header description (<a class="reference internal" href="reference/command/output_format.html"><em>Output format</em></a>).</li>
         
     | 
| 
      
 71 
     | 
    
         
            +
            <li>Supported to inspect vector and object value in JSON load.
         
     | 
| 
      
 72 
     | 
    
         
            +
            It shows more details about data which is failed to load.</li>
         
     | 
| 
      
 73 
     | 
    
         
            +
            <li>Added <tt class="docutils literal"><span class="pre">adjuster</span></tt> option to select command.
         
     | 
| 
      
 74 
     | 
    
         
            +
            adjuster options accepts following syntax: INDEX_COLUMN @ STRING_LITERAL (* FACTOR).</li>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <li>Supported <a class="reference internal" href="reference/columns/vector.html#weight-vector-column"><em>Weight vector column</em></a>. You need to specify 'COLUMN_VECTOR|WITH_WEIGHT' flags
         
     | 
| 
      
 76 
     | 
    
         
            +
            to create weight vector column.</li>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <li>Added missing MIN/MAX macros on SunOS. [GitHub#154] [Patch by Sebastian Wiedenroth]</li>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <li>Improved recycling garbage data. It suppress to increse database size.</li>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li>[doc] Added documentation about GET parameters for <a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><em>groonga-suggest-httpd</em></a>.</li>
         
     | 
| 
      
 80 
     | 
    
         
            +
            <li>[doc] Added documentation about <a class="reference internal" href="reference/column.html"><em>Column</em></a>.</li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <li>[doc] Added documentation about <a class="reference internal" href="reference/columns/vector.html"><em>Vector column</em></a>.</li>
         
     | 
| 
      
 82 
     | 
    
         
            +
            <li>[column_list] Supported to show weight vector column.</li>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <li>[column_create] Added error check for creating multi column index without WITH_SECTION.</li>
         
     | 
| 
      
 84 
     | 
    
         
            +
            <li>[httpd] Enabled stub status module (NginxHttpStubStatusModule) for groonga-httpd. [Suggested by Masahiro Nagano]</li>
         
     | 
| 
      
 85 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 86 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 87 
     | 
    
         
            +
            <div class="section" id="fixes">
         
     | 
| 
      
 88 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 89 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 90 
     | 
    
         
            +
            <li>Fixed a bug that a division overflow caused a fatal error.
         
     | 
| 
      
 91 
     | 
    
         
            +
            For example, it occurs when you execute 'COLUMN / -1' operation to Int32 or Int64 column. [#2307]</li>
         
     | 
| 
      
 92 
     | 
    
         
            +
            <li>Fixed a bug that '%' operations performs '/' operations. [#2307]</li>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <li>[doc] Fixed a wrong documentation about <a class="reference internal" href="reference/commands/column_rename.html"><em>column_rename</em></a>.</li>
         
     | 
| 
      
 94 
     | 
    
         
            +
            <li>Fixed the issue that out of bound array element access may occurs. [GitHub#158] [Reported by dcb314]</li>
         
     | 
| 
      
 95 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 96 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 97 
     | 
    
         
            +
            <div class="section" id="thanks">
         
     | 
| 
      
 98 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 99 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 100 
     | 
    
         
            +
            <li>nise_nabe</li>
         
     | 
| 
      
 101 
     | 
    
         
            +
            <li>Sebastian Wiedenroth</li>
         
     | 
| 
      
 102 
     | 
    
         
            +
            <li>dcb314</li>
         
     | 
| 
      
 103 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 104 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 105 
     | 
    
         
            +
            </div>
         
     | 
| 
       65 
106 
     | 
    
         
             
            <div class="section" id="release-4-0-0-2014-02-09">
         
     | 
| 
       66 
107 
     | 
    
         
             
            <span id="release-4-0-0"></span><h2>Release 4.0.0 - 2014/02/09<a class="headerlink" href="#release-4-0-0-2014-02-09" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       67 
108 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       68 
109 
     | 
    
         
             
            <li>Bump version to 4.0.0!</li>
         
     | 
| 
       69 
110 
     | 
    
         
             
            </ul>
         
     | 
| 
       70 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       71 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 111 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 112 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       72 
113 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       73 
114 
     | 
    
         
             
            <li>[normalizer] Supported to show "checks" which is used for calculating next character position.
         
     | 
| 
       74 
115 
     | 
    
         
             
            Use WITH_CHECKS flag to enable this feature.</li>
         
     | 
| 
       75 
116 
     | 
    
         
             
            <li>[deb] Dropped Ubuntu 13.04 support.</li>
         
     | 
| 
       76 
117 
     | 
    
         
             
            </ul>
         
     | 
| 
       77 
118 
     | 
    
         
             
            </div>
         
     | 
| 
       78 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       79 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 119 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 120 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       80 
121 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       81 
122 
     | 
    
         
             
            <li>Fixed a crash bug that an object in grn_expr is used after it is freed.
         
     | 
| 
       82 
123 
     | 
    
         
             
            Normally Groonga server users aren't affected this bug. This bug mainly affects Rroonga users.
         
     | 
| 
         @@ -95,8 +136,8 @@ If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li> 
     | 
|
| 
       95 
136 
     | 
    
         
             
            [groonga-dev,02113] [Reported by Ryoji Yamamoto]</li>
         
     | 
| 
       96 
137 
     | 
    
         
             
            </ul>
         
     | 
| 
       97 
138 
     | 
    
         
             
            </div>
         
     | 
| 
       98 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       99 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 139 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 140 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       100 
141 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       101 
142 
     | 
    
         
             
            <li>yoku</li>
         
     | 
| 
       102 
143 
     | 
    
         
             
            <li>Naoya Murakami</li>
         
     | 
| 
         @@ -106,8 +147,8 @@ If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li> 
     | 
|
| 
       106 
147 
     | 
    
         
             
            </div>
         
     | 
| 
       107 
148 
     | 
    
         
             
            <div class="section" id="release-3-1-2-2014-01-29">
         
     | 
| 
       108 
149 
     | 
    
         
             
            <span id="release-3-1-2"></span><h2>Release 3.1.2 - 2014/01/29<a class="headerlink" href="#release-3-1-2-2014-01-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       109 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       110 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 150 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 151 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       111 
152 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       112 
153 
     | 
    
         
             
            <li>[doc] Updated to caplitalized "Groonga" terms in documentation. [Patch by cosmo0920] [GitHub#136, #137, #138, #139, #140, #141, #142, #143, #144, #145, #146, #147, #148, #149, #150, #151]</li>
         
     | 
| 
       113 
154 
     | 
    
         
             
            <li>Supported to customize the value of lock timeout. See <a class="reference internal" href="reference/api/global_configurations.html"><em>Global configurations</em></a> about details.
         
     | 
| 
         @@ -120,8 +161,8 @@ This change improves missing search results isssue when narrowing down by multip 
     | 
|
| 
       120 
161 
     | 
    
         
             
            <li>Added API to customize normalizer for snippet.</li>
         
     | 
| 
       121 
162 
     | 
    
         
             
            </ul>
         
     | 
| 
       122 
163 
     | 
    
         
             
            </div>
         
     | 
| 
       123 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       124 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 164 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 165 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       125 
166 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       126 
167 
     | 
    
         
             
            <li>Fixed not to use index for empty query. This change enables you to search even though empty query.
         
     | 
| 
       127 
168 
     | 
    
         
             
            Note that this means that there is performance penalty if many empty records exist.
         
     | 
| 
         @@ -134,8 +175,8 @@ if X doesn't satisfy the condition, it returns false instead of 0.</li> 
     | 
|
| 
       134 
175 
     | 
    
         
             
            of <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a>. In such a purpose, use "snippet_html(XXX) || 'default value'".</li>
         
     | 
| 
       135 
176 
     | 
    
         
             
            </ul>
         
     | 
| 
       136 
177 
     | 
    
         
             
            </div>
         
     | 
| 
       137 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       138 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 178 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 179 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       139 
180 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       140 
181 
     | 
    
         
             
            <li>cosmo0920</li>
         
     | 
| 
       141 
182 
     | 
    
         
             
            <li>yoku</li>
         
     | 
| 
         @@ -145,8 +186,8 @@ of <a class="reference internal" href="reference/functions/snippet_html.html"><e 
     | 
|
| 
       145 
186 
     | 
    
         
             
            </div>
         
     | 
| 
       146 
187 
     | 
    
         
             
            <div class="section" id="release-3-1-1-2013-12-29">
         
     | 
| 
       147 
188 
     | 
    
         
             
            <span id="release-3-1-1"></span><h2>Release 3.1.1 - 2013/12/29<a class="headerlink" href="#release-3-1-1-2013-12-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       148 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       149 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 189 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 190 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       150 
191 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       151 
192 
     | 
    
         
             
            <li>[deb] Refined Groonga packages for Debian policy. [groonga-dev,01930]
         
     | 
| 
       152 
193 
     | 
    
         
             
            [Suggested by Hideki Yamane]</li>
         
     | 
| 
         @@ -165,16 +206,16 @@ filtering the column value in specific range.</li> 
     | 
|
| 
       165 
206 
     | 
    
         
             
            <li>[doc] Updated "Groonga" notation. [Patch by cosmo0920] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]</li>
         
     | 
| 
       166 
207 
     | 
    
         
             
            </ul>
         
     | 
| 
       167 
208 
     | 
    
         
             
            </div>
         
     | 
| 
       168 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       169 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 209 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 210 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       170 
211 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       171 
212 
     | 
    
         
             
            <li>[munin] Fixed the wrong port number which is specified for GQTP.</li>
         
     | 
| 
       172 
213 
     | 
    
         
             
            <li>[geo_in_circle] Fixed a bug that if you specify "LONGITUDExLATITUDE" as
         
     | 
| 
       173 
214 
     | 
    
         
             
            the 3rd argument of <a class="reference internal" href="reference/functions/geo_in_circle.html"><em>geo_in_circle</em></a>, Groonga crashes.</li>
         
     | 
| 
       174 
215 
     | 
    
         
             
            </ul>
         
     | 
| 
       175 
216 
     | 
    
         
             
            </div>
         
     | 
| 
       176 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       177 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 217 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 218 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       178 
219 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       179 
220 
     | 
    
         
             
            <li>Hideki Yamane</li>
         
     | 
| 
       180 
221 
     | 
    
         
             
            <li>whombx</li>
         
     | 
| 
         @@ -185,8 +226,8 @@ the 3rd argument of <a class="reference internal" href="reference/functions/geo_ 
     | 
|
| 
       185 
226 
     | 
    
         
             
            </div>
         
     | 
| 
       186 
227 
     | 
    
         
             
            <div class="section" id="release-3-1-0-2013-11-29">
         
     | 
| 
       187 
228 
     | 
    
         
             
            <span id="release-3-1-0"></span><h2>Release 3.1.0 - 2013/11/29<a class="headerlink" href="#release-3-1-0-2013-11-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       188 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       189 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 229 
     | 
    
         
            +
            <div class="section" id="id10">
         
     | 
| 
      
 230 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       190 
231 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       191 
232 
     | 
    
         
             
            <li>[experimental] Supported an option to skip updating for the same value.
         
     | 
| 
       192 
233 
     | 
    
         
             
            It is enabled by setting GRN_JA_SKIP_SAME_VALUE_PUT=yes as environment variable.</li>
         
     | 
| 
         @@ -197,8 +238,8 @@ It shows actual token, so it helps you to investigate token related issue.</li> 
     | 
|
| 
       197 
238 
     | 
    
         
             
            It is aimed to promote bundling Mroonga with MariaDB in the future.</li>
         
     | 
| 
       198 
239 
     | 
    
         
             
            </ul>
         
     | 
| 
       199 
240 
     | 
    
         
             
            </div>
         
     | 
| 
       200 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       201 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 241 
     | 
    
         
            +
            <div class="section" id="id11">
         
     | 
| 
      
 242 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       202 
243 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       203 
244 
     | 
    
         
             
            <li>Fixed a bug that type of "_value" column is treated as Int32.
         
     | 
| 
       204 
245 
     | 
    
         
             
            It causes the case that the value of "_value" column is casted unexpectedly.
         
     | 
| 
         @@ -215,8 +256,8 @@ sequence.</li> 
     | 
|
| 
       215 
256 
     | 
    
         
             
            'lib/groonga/plugins'. [Reported by @yito]</li>
         
     | 
| 
       216 
257 
     | 
    
         
             
            </ul>
         
     | 
| 
       217 
258 
     | 
    
         
             
            </div>
         
     | 
| 
       218 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       219 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 259 
     | 
    
         
            +
            <div class="section" id="id12">
         
     | 
| 
      
 260 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       220 
261 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       221 
262 
     | 
    
         
             
            <li>sho MINAGAWA</li>
         
     | 
| 
       222 
263 
     | 
    
         
             
            <li>Genki Takiuchi</li>
         
     | 
| 
         @@ -227,8 +268,8 @@ sequence.</li> 
     | 
|
| 
       227 
268 
     | 
    
         
             
            </div>
         
     | 
| 
       228 
269 
     | 
    
         
             
            <div class="section" id="release-3-0-9-2013-10-29">
         
     | 
| 
       229 
270 
     | 
    
         
             
            <span id="release-3-0-9"></span><h2>Release 3.0.9 - 2013/10/29<a class="headerlink" href="#release-3-0-9-2013-10-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       230 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       231 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 271 
     | 
    
         
            +
            <div class="section" id="id13">
         
     | 
| 
      
 272 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       232 
273 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       233 
274 
     | 
    
         
             
            <li>[doc][httpd] Added documentation about <a class="reference internal" href="reference/executables/groonga-httpd.html#groonga-database-auto-create"><em>groonga_database_auto_create</em></a> directive.</li>
         
     | 
| 
       234 
275 
     | 
    
         
             
            <li>[httpd] Added <a class="reference internal" href="reference/executables/groonga-httpd.html#groonga-cache-limit"><em>groonga_cache_limit</em></a> directive.</li>
         
     | 
| 
         @@ -248,8 +289,8 @@ raw text insted of double quoted text. This is incompatible changes.</li> 
     | 
|
| 
       248 
289 
     | 
    
         
             
            <li>Supported Ubuntu 13.10 (Saucy Salamander).</li>
         
     | 
| 
       249 
290 
     | 
    
         
             
            </ul>
         
     | 
| 
       250 
291 
     | 
    
         
             
            </div>
         
     | 
| 
       251 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       252 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 292 
     | 
    
         
            +
            <div class="section" id="id14">
         
     | 
| 
      
 293 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       253 
294 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       254 
295 
     | 
    
         
             
            <li>Fixed a bug that it cause SEGV by arithmetic overflow.
         
     | 
| 
       255 
296 
     | 
    
         
             
            This problem occurs when the size of indexes exceeds
         
     | 
| 
         @@ -270,8 +311,8 @@ isn't inherited. It means that these parameters are just ignored in non location 
     | 
|
| 
       270 
311 
     | 
    
         
             
            It affects the case that assignment of the Time value which indicate over 32bit value.</li>
         
     | 
| 
       271 
312 
     | 
    
         
             
            </ul>
         
     | 
| 
       272 
313 
     | 
    
         
             
            </div>
         
     | 
| 
       273 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       274 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 314 
     | 
    
         
            +
            <div class="section" id="id15">
         
     | 
| 
      
 315 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       275 
316 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       276 
317 
     | 
    
         
             
            <li>Naoya Murakami</li>
         
     | 
| 
       277 
318 
     | 
    
         
             
            <li>wanabe</li>
         
     | 
| 
         @@ -282,8 +323,8 @@ It affects the case that assignment of the Time value which indicate over 32bit 
     | 
|
| 
       282 
323 
     | 
    
         
             
            </div>
         
     | 
| 
       283 
324 
     | 
    
         
             
            <div class="section" id="release-3-0-8-2013-09-29">
         
     | 
| 
       284 
325 
     | 
    
         
             
            <span id="release-3-0-8"></span><h2>Release 3.0.8 - 2013/09/29<a class="headerlink" href="#release-3-0-8-2013-09-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       285 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       286 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 326 
     | 
    
         
            +
            <div class="section" id="id16">
         
     | 
| 
      
 327 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       287 
328 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       288 
329 
     | 
    
         
             
            <li>[admin] Improved error handling of select functionality. This change shows error message
         
     | 
| 
       289 
330 
     | 
    
         
             
            and hides loading dialog. [Patch by orangain]</li>
         
     | 
| 
         @@ -306,14 +347,14 @@ You got an error for the operation.</li> 
     | 
|
| 
       306 
347 
     | 
    
         
             
            <li>[doc] Added note about GQTP and HTTP for server use. [groonga-dev,01810] [Reported by Kazuhiro Isobe]</li>
         
     | 
| 
       307 
348 
     | 
    
         
             
            </ul>
         
     | 
| 
       308 
349 
     | 
    
         
             
            </div>
         
     | 
| 
       309 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       310 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 350 
     | 
    
         
            +
            <div class="section" id="id17">
         
     | 
| 
      
 351 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       311 
352 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       312 
353 
     | 
    
         
             
            <li>[admin] Fixed a bug that add value button of COLUMN_VECTOR does not work.</li>
         
     | 
| 
       313 
354 
     | 
    
         
             
            </ul>
         
     | 
| 
       314 
355 
     | 
    
         
             
            </div>
         
     | 
| 
       315 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       316 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 356 
     | 
    
         
            +
            <div class="section" id="id18">
         
     | 
| 
      
 357 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       317 
358 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       318 
359 
     | 
    
         
             
            <li>orangain</li>
         
     | 
| 
       319 
360 
     | 
    
         
             
            <li>Naoya Murakami</li>
         
     | 
| 
         @@ -323,8 +364,8 @@ You got an error for the operation.</li> 
     | 
|
| 
       323 
364 
     | 
    
         
             
            </div>
         
     | 
| 
       324 
365 
     | 
    
         
             
            <div class="section" id="release-3-0-7-2013-08-29">
         
     | 
| 
       325 
366 
     | 
    
         
             
            <span id="release-3-0-7"></span><h2>Release 3.0.7 - 2013/08/29<a class="headerlink" href="#release-3-0-7-2013-08-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       326 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       327 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 367 
     | 
    
         
            +
            <div class="section" id="id19">
         
     | 
| 
      
 368 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       328 
369 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       329 
370 
     | 
    
         
             
            <li>[doc] Added API documentation. [groonga-dev,01593]
         
     | 
| 
       330 
371 
     | 
    
         
             
            [GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]
         
     | 
| 
         @@ -343,8 +384,8 @@ error instead of a warning. [groonga-dev,01571] [Suggested by Naoya Murakami]</l 
     | 
|
| 
       343 
384 
     | 
    
         
             
            <li>[httpd] Supported customizing cache limit as <tt class="docutils literal"><span class="pre">groonga_cache_limit</span></tt> directive.</li>
         
     | 
| 
       344 
385 
     | 
    
         
             
            </ul>
         
     | 
| 
       345 
386 
     | 
    
         
             
            </div>
         
     | 
| 
       346 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       347 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 387 
     | 
    
         
            +
            <div class="section" id="id20">
         
     | 
| 
      
 388 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       348 
389 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       349 
390 
     | 
    
         
             
            <li>Fixed a bug that error in expression may cause stack overflow.
         
     | 
| 
       350 
391 
     | 
    
         
             
            This change avoids that groonga crashes suddenly as a result of error accumlation.</li>
         
     | 
| 
         @@ -372,8 +413,8 @@ The <tt class="docutils literal"><span class="pre">select</span> <span class="pr 
     | 
|
| 
       372 
413 
     | 
    
         
             
            [Reported by YOSHIDA Mitsuo]</li>
         
     | 
| 
       373 
414 
     | 
    
         
             
            </ul>
         
     | 
| 
       374 
415 
     | 
    
         
             
            </div>
         
     | 
| 
       375 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       376 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 416 
     | 
    
         
            +
            <div class="section" id="id21">
         
     | 
| 
      
 417 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       377 
418 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       378 
419 
     | 
    
         
             
            <li>whombx</li>
         
     | 
| 
       379 
420 
     | 
    
         
             
            <li>@naoina</li>
         
     | 
| 
         @@ -386,8 +427,8 @@ The <tt class="docutils literal"><span class="pre">select</span> <span class="pr 
     | 
|
| 
       386 
427 
     | 
    
         
             
            </div>
         
     | 
| 
       387 
428 
     | 
    
         
             
            <div class="section" id="release-3-0-6-2013-07-29">
         
     | 
| 
       388 
429 
     | 
    
         
             
            <span id="release-3-0-6"></span><h2>Release 3.0.6 - 2013/07/29<a class="headerlink" href="#release-3-0-6-2013-07-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       389 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       390 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 430 
     | 
    
         
            +
            <div class="section" id="id22">
         
     | 
| 
      
 431 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       391 
432 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       392 
433 
     | 
    
         
             
            <li>[doc] Added documentation about parameter of <a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a>
         
     | 
| 
       393 
434 
     | 
    
         
             
            function.</li>
         
     | 
| 
         @@ -401,15 +442,15 @@ function.</li> 
     | 
|
| 
       401 
442 
     | 
    
         
             
            <li>[httpd] Updated bundled nginx version to 1.4.2.</li>
         
     | 
| 
       402 
443 
     | 
    
         
             
            </ul>
         
     | 
| 
       403 
444 
     | 
    
         
             
            </div>
         
     | 
| 
       404 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       405 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 445 
     | 
    
         
            +
            <div class="section" id="id23">
         
     | 
| 
      
 446 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       406 
447 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       407 
448 
     | 
    
         
             
            <li>Fixed a crash bug when specific internal function (<tt class="docutils literal"><span class="pre">grn_obj_path()</span></tt>) is called
         
     | 
| 
       408 
449 
     | 
    
         
             
            for built-in proc function such as <tt class="docutils literal"><span class="pre">select</span></tt>. [Reported by Genki Takiuchi]</li>
         
     | 
| 
       409 
450 
     | 
    
         
             
            </ul>
         
     | 
| 
       410 
451 
     | 
    
         
             
            </div>
         
     | 
| 
       411 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       412 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 452 
     | 
    
         
            +
            <div class="section" id="id24">
         
     | 
| 
      
 453 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       413 
454 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       414 
455 
     | 
    
         
             
            <li>Naoya Inada</li>
         
     | 
| 
       415 
456 
     | 
    
         
             
            <li>OBATA Akio</li>
         
     | 
| 
         @@ -420,8 +461,8 @@ for built-in proc function such as <tt class="docutils literal"><span class="pre 
     | 
|
| 
       420 
461 
     | 
    
         
             
            </div>
         
     | 
| 
       421 
462 
     | 
    
         
             
            <div class="section" id="release-3-0-5-2013-06-29">
         
     | 
| 
       422 
463 
     | 
    
         
             
            <span id="release-3-0-5"></span><h2>Release 3.0.5 - 2013/06/29<a class="headerlink" href="#release-3-0-5-2013-06-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       423 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       424 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 464 
     | 
    
         
            +
            <div class="section" id="id25">
         
     | 
| 
      
 465 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       425 
466 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       426 
467 
     | 
    
         
             
            <li>[doc] Added summary about <tt class="docutils literal"><span class="pre">match_columns</span></tt> and <tt class="docutils literal"><span class="pre">query_string</span></tt> parameters in <tt class="docutils literal"><span class="pre">query()</span></tt>.</li>
         
     | 
| 
       427 
468 
     | 
    
         
             
            <li>Added subrecord information to table inspection.</li>
         
     | 
| 
         @@ -432,8 +473,8 @@ when starting groonga server. [Reported by Kosuke Asami]</li> 
     | 
|
| 
       432 
473 
     | 
    
         
             
            <li>[experimental] Added <a class="reference internal" href="reference/functions/html_untag.html"><em>html_untag</em></a> function.</li>
         
     | 
| 
       433 
474 
     | 
    
         
             
            </ul>
         
     | 
| 
       434 
475 
     | 
    
         
             
            </div>
         
     | 
| 
       435 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       436 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 476 
     | 
    
         
            +
            <div class="section" id="id26">
         
     | 
| 
      
 477 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       437 
478 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       438 
479 
     | 
    
         
             
            <li>Fixed a crash bug of mroonga which is caused by missing lock for table creation.
         
     | 
| 
       439 
480 
     | 
    
         
             
            [Reported by Y.Kentaro]</li>
         
     | 
| 
         @@ -451,8 +492,8 @@ This bug affects the case if you assign calculated value to 
     | 
|
| 
       451 
492 
     | 
    
         
             
            <tt class="docutils literal"><span class="pre">_score</span></tt> pseudo column for example.</li>
         
     | 
| 
       452 
493 
     | 
    
         
             
            </ul>
         
     | 
| 
       453 
494 
     | 
    
         
             
            </div>
         
     | 
| 
       454 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       455 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 495 
     | 
    
         
            +
            <div class="section" id="id27">
         
     | 
| 
      
 496 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       456 
497 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       457 
498 
     | 
    
         
             
            <li>Y.Kentaro</li>
         
     | 
| 
       458 
499 
     | 
    
         
             
            <li>Kosuke Asami</li>
         
     | 
| 
         @@ -462,8 +503,8 @@ This bug affects the case if you assign calculated value to 
     | 
|
| 
       462 
503 
     | 
    
         
             
            </div>
         
     | 
| 
       463 
504 
     | 
    
         
             
            <div class="section" id="release-3-0-4-2013-05-29">
         
     | 
| 
       464 
505 
     | 
    
         
             
            <span id="release-3-0-4"></span><h2>Release 3.0.4 - 2013/05/29<a class="headerlink" href="#release-3-0-4-2013-05-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       465 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       466 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 506 
     | 
    
         
            +
            <div class="section" id="id28">
         
     | 
| 
      
 507 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       467 
508 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       468 
509 
     | 
    
         
             
            <li>[tokenizer] Improved to show log message when normalized string is not given.</li>
         
     | 
| 
       469 
510 
     | 
    
         
             
            <li>Supported <tt class="docutils literal"><span class="pre">_key</span></tt> as an argument of <tt class="docutils literal"><span class="pre">geo_in_circle</span></tt>. [Reported by @ceekz]</li>
         
     | 
| 
         @@ -486,8 +527,8 @@ It supports to exclude specific tables from monitoring results.</li> 
     | 
|
| 
       486 
527 
     | 
    
         
             
            system plugins.</li>
         
     | 
| 
       487 
528 
     | 
    
         
             
            </ul>
         
     | 
| 
       488 
529 
     | 
    
         
             
            </div>
         
     | 
| 
       489 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       490 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 530 
     | 
    
         
            +
            <div class="section" id="id29">
         
     | 
| 
      
 531 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       491 
532 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       492 
533 
     | 
    
         
             
            <li>[tokenizer] Fixed a memory leak on error.</li>
         
     | 
| 
       493 
534 
     | 
    
         
             
            <li>Fixed a bug that empty string for similar search causes SEGV.
         
     | 
| 
         @@ -502,8 +543,8 @@ expressions are used.</li> 
     | 
|
| 
       502 
543 
     | 
    
         
             
            <li>[deb] Fixed a bug that HTTP/GQTP process is excuted as root user.</li>
         
     | 
| 
       503 
544 
     | 
    
         
             
            </ul>
         
     | 
| 
       504 
545 
     | 
    
         
             
            </div>
         
     | 
| 
       505 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       506 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 546 
     | 
    
         
            +
            <div class="section" id="id30">
         
     | 
| 
      
 547 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       507 
548 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       508 
549 
     | 
    
         
             
            <li>@ceekz</li>
         
     | 
| 
       509 
550 
     | 
    
         
             
            <li>Nakai Kanako</li>
         
     | 
| 
         @@ -516,8 +557,8 @@ expressions are used.</li> 
     | 
|
| 
       516 
557 
     | 
    
         
             
            </div>
         
     | 
| 
       517 
558 
     | 
    
         
             
            <div class="section" id="release-3-0-3-2013-04-29">
         
     | 
| 
       518 
559 
     | 
    
         
             
            <span id="release-3-0-3"></span><h2>Release 3.0.3 - 2013/04/29<a class="headerlink" href="#release-3-0-3-2013-04-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       519 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       520 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 560 
     | 
    
         
            +
            <div class="section" id="id31">
         
     | 
| 
      
 561 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       521 
562 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       522 
563 
     | 
    
         
             
            <li>[suggest] Supported to learn with the value of customized weight
         
     | 
| 
       523 
564 
     | 
    
         
             
            by using <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> configuration.</li>
         
     | 
| 
         @@ -535,8 +576,8 @@ for building customized groonga without changing spec file.</li> 
     | 
|
| 
       535 
576 
     | 
    
         
             
            </div>
         
     | 
| 
       536 
577 
     | 
    
         
             
            <div class="section" id="release-3-0-2-2013-03-29">
         
     | 
| 
       537 
578 
     | 
    
         
             
            <span id="release-3-0-2"></span><h2>Release 3.0.2 - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       538 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       539 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 579 
     | 
    
         
            +
            <div class="section" id="id32">
         
     | 
| 
      
 580 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       540 
581 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       541 
582 
     | 
    
         
             
            <li>Supported two or more indexes for a table key.
         
     | 
| 
       542 
583 
     | 
    
         
             
            This change affects to eliminate potential crash case when loading a new key
         
     | 
| 
         @@ -560,8 +601,8 @@ This change supports the query such as 
     | 
|
| 
       560 
601 
     | 
    
         
             
            <tt class="docutils literal"><span class="pre">--query_expansion</span></tt> is regarded as deprecated.</li>
         
     | 
| 
       561 
602 
     | 
    
         
             
            </ul>
         
     | 
| 
       562 
603 
     | 
    
         
             
            </div>
         
     | 
| 
       563 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       564 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 604 
     | 
    
         
            +
            <div class="section" id="id33">
         
     | 
| 
      
 605 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       565 
606 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       566 
607 
     | 
    
         
             
            <li>Fixed a bug that <tt class="docutils literal"><span class="pre">snippet_html(XXX),</span> <span class="pre">XXX</span></tt> fails with "stack error".
         
     | 
| 
       567 
608 
     | 
    
         
             
            This bug affects a query such as <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'snippet_html(title),</span> <span class="pre">content'</span></tt>.
         
     | 
| 
         @@ -577,8 +618,8 @@ Reference key size is 25 byte or lager.</li> 
     | 
|
| 
       577 
618 
     | 
    
         
             
            This affects the case if GARBAGE does not exist.</li>
         
     | 
| 
       578 
619 
     | 
    
         
             
            </ul>
         
     | 
| 
       579 
620 
     | 
    
         
             
            </div>
         
     | 
| 
       580 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       581 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 621 
     | 
    
         
            +
            <div class="section" id="id34">
         
     | 
| 
      
 622 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       582 
623 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       583 
624 
     | 
    
         
             
            <li>Hendro Wibowo</li>
         
     | 
| 
       584 
625 
     | 
    
         
             
            <li>hino</li>
         
     | 
| 
         @@ -588,8 +629,8 @@ This affects the case if GARBAGE does not exist.</li> 
     | 
|
| 
       588 
629 
     | 
    
         
             
            </div>
         
     | 
| 
       589 
630 
     | 
    
         
             
            <div class="section" id="release-3-0-1-2013-02-28">
         
     | 
| 
       590 
631 
     | 
    
         
             
            <span id="release-3-0-1"></span><h2>Release 3.0.1 - 2013/02/28<a class="headerlink" href="#release-3-0-1-2013-02-28" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       591 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       592 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 632 
     | 
    
         
            +
            <div class="section" id="id35">
         
     | 
| 
      
 633 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       593 
634 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       594 
635 
     | 
    
         
             
            <li>Supported to set Bool to reference column when loading dataset by load command.</li>
         
     | 
| 
       595 
636 
     | 
    
         
             
            <li>Supported AND operation for nested index.
         
     | 
| 
         @@ -606,8 +647,8 @@ based nested index of _key.</li> 
     | 
|
| 
       606 
647 
     | 
    
         
             
            <li>[doc] Added missing documentation of commands such as <tt class="docutils literal"><span class="pre">column_rename</span></tt> or <tt class="docutils literal"><span class="pre">truncate</span></tt>.</li>
         
     | 
| 
       607 
648 
     | 
    
         
             
            </ul>
         
     | 
| 
       608 
649 
     | 
    
         
             
            </div>
         
     | 
| 
       609 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       610 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 650 
     | 
    
         
            +
            <div class="section" id="id36">
         
     | 
| 
      
 651 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       611 
652 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       612 
653 
     | 
    
         
             
            <li>Fixed a bug that <tt class="docutils literal"><span class="pre">grn_index_cursor_next()</span></tt> returns NULL unexpectedly.
         
     | 
| 
       613 
654 
     | 
    
         
             
            It causes that invalid index entry is returned after deleting entries.
         
     | 
| 
         @@ -617,8 +658,8 @@ This bug occurs by wrong the number of found records.</li> 
     | 
|
| 
       617 
658 
     | 
    
         
             
            <li>[httpd] Enabled default owner/group of database setting as groonga/groonga.</li>
         
     | 
| 
       618 
659 
     | 
    
         
             
            </ul>
         
     | 
| 
       619 
660 
     | 
    
         
             
            </div>
         
     | 
| 
       620 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       621 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 661 
     | 
    
         
            +
            <div class="section" id="id37">
         
     | 
| 
      
 662 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id37" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       622 
663 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       623 
664 
     | 
    
         
             
            <li>b senboku</li>
         
     | 
| 
       624 
665 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -629,8 +670,8 @@ This bug occurs by wrong the number of found records.</li> 
     | 
|
| 
       629 
670 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       630 
671 
     | 
    
         
             
            <li>Bump version to 3.0.0!</li>
         
     | 
| 
       631 
672 
     | 
    
         
             
            </ul>
         
     | 
| 
       632 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       633 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 673 
     | 
    
         
            +
            <div class="section" id="id38">
         
     | 
| 
      
 674 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id38" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       634 
675 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       635 
676 
     | 
    
         
             
            <li>[deb] Fixed to install missing not EUC-JP, but UTF-8 encoding dictionary
         
     | 
| 
       636 
677 
     | 
    
         
             
            when <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> package is installed.</li>
         
     | 
| 
         @@ -640,8 +681,8 @@ If you use string literal for int64, this bug does not affects.</li> 
     | 
|
| 
       640 
681 
     | 
    
         
             
            by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]</li>
         
     | 
| 
       641 
682 
     | 
    
         
             
            </ul>
         
     | 
| 
       642 
683 
     | 
    
         
             
            </div>
         
     | 
| 
       643 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       644 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 684 
     | 
    
         
            +
            <div class="section" id="id39">
         
     | 
| 
      
 685 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id39" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       645 
686 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       646 
687 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       647 
688 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -649,8 +690,8 @@ by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]</li> 
     | 
|
| 
       649 
690 
     | 
    
         
             
            </div>
         
     | 
| 
       650 
691 
     | 
    
         
             
            <div class="section" id="release-2-1-2-2013-01-29">
         
     | 
| 
       651 
692 
     | 
    
         
             
            <span id="release-2-1-2"></span><h2>Release 2.1.2 - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       652 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       653 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 693 
     | 
    
         
            +
            <div class="section" id="id40">
         
     | 
| 
      
 694 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id40" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       654 
695 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       655 
696 
     | 
    
         
             
            <li>Supported multiple <tt class="docutils literal"><span class="pre">query()</span></tt> in a select command.
         
     | 
| 
       656 
697 
     | 
    
         
             
            For example, you can specify the keyword which has different weight such as
         
     | 
| 
         @@ -676,8 +717,8 @@ in <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li> 
     | 
|
| 
       676 
717 
     | 
    
         
             
            <li>[doc] Added documentation for <a class="reference internal" href="reference/functions/query.html"><em>query</em></a>.</li>
         
     | 
| 
       677 
718 
     | 
    
         
             
            </ul>
         
     | 
| 
       678 
719 
     | 
    
         
             
            </div>
         
     | 
| 
       679 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       680 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 720 
     | 
    
         
            +
            <div class="section" id="id41">
         
     | 
| 
      
 721 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id41" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       681 
722 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       682 
723 
     | 
    
         
             
            <li>Fixed not to report an error even though MeCab tokenizer shared object
         
     | 
| 
       683 
724 
     | 
    
         
             
            isn't found. [groonga-dev,01174] [Reported by wing]</li>
         
     | 
| 
         @@ -687,8 +728,8 @@ isn't found. [groonga-dev,01174] [Reported by wing]</li> 
     | 
|
| 
       687 
728 
     | 
    
         
             
            by select command.</li>
         
     | 
| 
       688 
729 
     | 
    
         
             
            </ul>
         
     | 
| 
       689 
730 
     | 
    
         
             
            </div>
         
     | 
| 
       690 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       691 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 731 
     | 
    
         
            +
            <div class="section" id="id42">
         
     | 
| 
      
 732 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id42" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       692 
733 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       693 
734 
     | 
    
         
             
            <li>wing</li>
         
     | 
| 
       694 
735 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -698,8 +739,8 @@ by select command.</li> 
     | 
|
| 
       698 
739 
     | 
    
         
             
            <span id="release-2-1-1"></span><h2>Release 2.1.1 - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       699 
740 
     | 
    
         
             
            <p>This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
         
     | 
| 
       700 
741 
     | 
    
         
             
            instead.</p>
         
     | 
| 
       701 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       702 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 742 
     | 
    
         
            +
            <div class="section" id="id43">
         
     | 
| 
      
 743 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id43" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       703 
744 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       704 
745 
     | 
    
         
             
            <li>Fixed a bug that <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> information in database that is
         
     | 
| 
       705 
746 
     | 
    
         
             
            created by groonga 2.0.8 or ealier is dropped.</li>
         
     | 
| 
         @@ -726,8 +767,8 @@ version of groonga.</p> 
     | 
|
| 
       726 
767 
     | 
    
         
             
            tokenizer. The argument of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> API has changed.
         
     | 
| 
       727 
768 
     | 
    
         
             
            This API change affects developer of tokenizer plugin.</p>
         
     | 
| 
       728 
769 
     | 
    
         
             
            </div>
         
     | 
| 
       729 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       730 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 770 
     | 
    
         
            +
            <div class="section" id="id44">
         
     | 
| 
      
 771 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id44" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       731 
772 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       732 
773 
     | 
    
         
             
            <li>[doc] Added documentation about <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
         
     | 
| 
       733 
774 
     | 
    
         
             
            <li>Supported the expression as <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> arguments.
         
     | 
| 
         @@ -749,8 +790,8 @@ of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span 
     | 
|
| 
       749 
790 
     | 
    
         
             
            and double array trie for <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
         
     | 
| 
       750 
791 
     | 
    
         
             
            </ul>
         
     | 
| 
       751 
792 
     | 
    
         
             
            </div>
         
     | 
| 
       752 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       753 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 793 
     | 
    
         
            +
            <div class="section" id="id45">
         
     | 
| 
      
 794 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id45" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       754 
795 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       755 
796 
     | 
    
         
             
            <li>[windows] Added missing <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> flag to open file correctly.
         
     | 
| 
       756 
797 
     | 
    
         
             
            This change fixes the infinite loop problem about groonga HTTP server.
         
     | 
| 
         @@ -762,8 +803,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop 
     | 
|
| 
       762 
803 
     | 
    
         
             
            <li>Fixed a bug that <tt class="docutils literal"><span class="pre">_score</span></tt> after "*" is ignored in <tt class="docutils literal"><span class="pre">--output_columns</span></tt>.</li>
         
     | 
| 
       763 
804 
     | 
    
         
             
            </ul>
         
     | 
| 
       764 
805 
     | 
    
         
             
            </div>
         
     | 
| 
       765 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       766 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 806 
     | 
    
         
            +
            <div class="section" id="id46">
         
     | 
| 
      
 807 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id46" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       767 
808 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       768 
809 
     | 
    
         
             
            <li>Tomoatsu Shimada</li>
         
     | 
| 
       769 
810 
     | 
    
         
             
            <li>Shimomura Tatsuya</li>
         
     | 
| 
         @@ -772,8 +813,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop 
     | 
|
| 
       772 
813 
     | 
    
         
             
            </div>
         
     | 
| 
       773 
814 
     | 
    
         
             
            <div class="section" id="release-2-0-9-2012-11-29">
         
     | 
| 
       774 
815 
     | 
    
         
             
            <span id="release-2-0-9"></span><h2>Release 2.0.9 - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       775 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       776 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 816 
     | 
    
         
            +
            <div class="section" id="id47">
         
     | 
| 
      
 817 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id47" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       777 
818 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       778 
819 
     | 
    
         
             
            <li>Supported to calculate the value of distance accross border
         
     | 
| 
       779 
820 
     | 
    
         
             
            in <tt class="docutils literal"><span class="pre">geo_distance</span></tt> with <tt class="docutils literal"><span class="pre">rectangle</span></tt> as approximate type. [#1534]</li>
         
     | 
| 
         @@ -796,8 +837,8 @@ This change is incompatibility change, but does not affects existing program.</l 
     | 
|
| 
       796 
837 
     | 
    
         
             
            <li>Supported range search by using index.</li>
         
     | 
| 
       797 
838 
     | 
    
         
             
            </ul>
         
     | 
| 
       798 
839 
     | 
    
         
             
            </div>
         
     | 
| 
       799 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       800 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 840 
     | 
    
         
            +
            <div class="section" id="id48">
         
     | 
| 
      
 841 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id48" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       801 
842 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       802 
843 
     | 
    
         
             
            <li>Fixed to use network byte order for status code of <a class="reference internal" href="spec/gqtp.html#gqtp-header-spec"><em>GQTP header</em></a> to follow
         
     | 
| 
       803 
844 
     | 
    
         
             
            the normal network protocol convention.
         
     | 
| 
         @@ -821,8 +862,8 @@ referenced by <tt class="docutils literal"><span class="pre">select</span></tt> 
     | 
|
| 
       821 
862 
     | 
    
         
             
            This change not to contain such a metadata as search results.</li>
         
     | 
| 
       822 
863 
     | 
    
         
             
            </ul>
         
     | 
| 
       823 
864 
     | 
    
         
             
            </div>
         
     | 
| 
       824 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       825 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 865 
     | 
    
         
            +
            <div class="section" id="id49">
         
     | 
| 
      
 866 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id49" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       826 
867 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       827 
868 
     | 
    
         
             
            <li>Tomoatsu Shimada</li>
         
     | 
| 
       828 
869 
     | 
    
         
             
            <li>Akio Tajima</li>
         
     | 
| 
         @@ -832,8 +873,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       832 
873 
     | 
    
         
             
            </div>
         
     | 
| 
       833 
874 
     | 
    
         
             
            <div class="section" id="release-2-0-8-2012-10-29">
         
     | 
| 
       834 
875 
     | 
    
         
             
            <span id="release-2-0-8"></span><h2>Release 2.0.8 - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       835 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       836 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 876 
     | 
    
         
            +
            <div class="section" id="id50">
         
     | 
| 
      
 877 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id50" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       837 
878 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       838 
879 
     | 
    
         
             
            <li>[rpm] Improved the description of server-http and httpd packages.
         
     | 
| 
       839 
880 
     | 
    
         
             
            [Suggested by Daiki Ueno]</li>
         
     | 
| 
         @@ -845,8 +886,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       845 
886 
     | 
    
         
             
            [Reported by serihiro]</li>
         
     | 
| 
       846 
887 
     | 
    
         
             
            </ul>
         
     | 
| 
       847 
888 
     | 
    
         
             
            </div>
         
     | 
| 
       848 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       849 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 889 
     | 
    
         
            +
            <div class="section" id="id51">
         
     | 
| 
      
 890 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id51" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       850 
891 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       851 
892 
     | 
    
         
             
            <li>[rpm] Fixed to remove needless "Requires" from spec file.
         
     | 
| 
       852 
893 
     | 
    
         
             
            [Reported by Daiki Ueno]</li>
         
     | 
| 
         @@ -857,8 +898,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       857 
898 
     | 
    
         
             
            <li>[deb] Fixed to bundle missing table plugin.</li>
         
     | 
| 
       858 
899 
     | 
    
         
             
            </ul>
         
     | 
| 
       859 
900 
     | 
    
         
             
            </div>
         
     | 
| 
       860 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       861 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 901 
     | 
    
         
            +
            <div class="section" id="id52">
         
     | 
| 
      
 902 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id52" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       862 
903 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       863 
904 
     | 
    
         
             
            <li>Daiki Ueno</li>
         
     | 
| 
       864 
905 
     | 
    
         
             
            <li>firewood</li>
         
     | 
| 
         @@ -868,8 +909,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       868 
909 
     | 
    
         
             
            </div>
         
     | 
| 
       869 
910 
     | 
    
         
             
            <div class="section" id="release-2-0-7-2012-09-29">
         
     | 
| 
       870 
911 
     | 
    
         
             
            <span id="release-2-0-7"></span><h2>Release 2.0.7 - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       871 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       872 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 912 
     | 
    
         
            +
            <div class="section" id="id53">
         
     | 
| 
      
 913 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id53" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       873 
914 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       874 
915 
     | 
    
         
             
            <li>[doc] Added more descriptions about <tt class="docutils literal"><span class="pre">--query_flags</span></tt>.</li>
         
     | 
| 
       875 
916 
     | 
    
         
             
            <li>[doc][httpd] Added sample configuration for gzip compression.</li>
         
     | 
| 
         @@ -885,8 +926,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       885 
926 
     | 
    
         
             
            <li>Added <tt class="docutils literal"><span class="pre">min()</span></tt> function.</li>
         
     | 
| 
       886 
927 
     | 
    
         
             
            </ul>
         
     | 
| 
       887 
928 
     | 
    
         
             
            </div>
         
     | 
| 
       888 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       889 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 929 
     | 
    
         
            +
            <div class="section" id="id54">
         
     | 
| 
      
 930 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id54" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       890 
931 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       891 
932 
     | 
    
         
             
            <li>Fixed to set domain to vector elements to <tt class="docutils literal"><span class="pre">load</span></tt> command. [GitHub#30]</li>
         
     | 
| 
       892 
933 
     | 
    
         
             
            <li>[httpd] Fixed missing NULL initialization. [Reported by @Kiske]</li>
         
     | 
| 
         @@ -897,8 +938,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       897 
938 
     | 
    
         
             
            <li>Fixed a bug that Time -> Float cast breaks value.</li>
         
     | 
| 
       898 
939 
     | 
    
         
             
            </ul>
         
     | 
| 
       899 
940 
     | 
    
         
             
            </div>
         
     | 
| 
       900 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       901 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 941 
     | 
    
         
            +
            <div class="section" id="id55">
         
     | 
| 
      
 942 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id55" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       902 
943 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       903 
944 
     | 
    
         
             
            <li>@Kiske</li>
         
     | 
| 
       904 
945 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -906,8 +947,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       906 
947 
     | 
    
         
             
            </div>
         
     | 
| 
       907 
948 
     | 
    
         
             
            <div class="section" id="release-2-0-6-2012-08-29">
         
     | 
| 
       908 
949 
     | 
    
         
             
            <span id="release-2-0-6"></span><h2>Release 2.0.6 - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       909 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       910 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 950 
     | 
    
         
            +
            <div class="section" id="id56">
         
     | 
| 
      
 951 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id56" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       911 
952 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       912 
953 
     | 
    
         
             
            <li>[deb][rpm] Added <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> meta package. [#1451]</li>
         
     | 
| 
       913 
954 
     | 
    
         
             
            <li>Supported <tt class="docutils literal"><span class="pre">--query_flags</span></tt> option to <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
         
     | 
| 
         @@ -928,8 +969,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       928 
969 
     | 
    
         
             
            <li>Supported '-WORD' in <tt class="docutils literal"><span class="pre">--query</span></tt> of the select command.</li>
         
     | 
| 
       929 
970 
     | 
    
         
             
            </ul>
         
     | 
| 
       930 
971 
     | 
    
         
             
            </div>
         
     | 
| 
       931 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       932 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 972 
     | 
    
         
            +
            <div class="section" id="id57">
         
     | 
| 
      
 973 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id57" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       933 
974 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       934 
975 
     | 
    
         
             
            <li>[doc] Fixed the execution examples. [#1428]
         
     | 
| 
       935 
976 
     | 
    
         
             
            [Reported by IWAI, Masaharu]</li>
         
     | 
| 
         @@ -944,8 +985,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt 
     | 
|
| 
       944 
985 
     | 
    
         
             
            [Reported by @yito]</li>
         
     | 
| 
       945 
986 
     | 
    
         
             
            </ul>
         
     | 
| 
       946 
987 
     | 
    
         
             
            </div>
         
     | 
| 
       947 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       948 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 988 
     | 
    
         
            +
            <div class="section" id="id58">
         
     | 
| 
      
 989 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id58" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       949 
990 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       950 
991 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       951 
992 
     | 
    
         
             
            <li>@yito</li>
         
     | 
| 
         @@ -954,8 +995,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt 
     | 
|
| 
       954 
995 
     | 
    
         
             
            </div>
         
     | 
| 
       955 
996 
     | 
    
         
             
            <div class="section" id="release-2-0-5-2012-07-29">
         
     | 
| 
       956 
997 
     | 
    
         
             
            <span id="release-2-0-5"></span><h2>Release 2.0.5 - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       957 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       958 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 998 
     | 
    
         
            +
            <div class="section" id="id59">
         
     | 
| 
      
 999 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id59" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       959 
1000 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       960 
1001 
     | 
    
         
             
            <li>Supported calculating the value of distance with "rect" or "rectangle"
         
     | 
| 
       961 
1002 
     | 
    
         
             
            argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
         
     | 
| 
         @@ -980,8 +1021,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li> 
     | 
|
| 
       980 
1021 
     | 
    
         
             
            <li>Supported to open locked database. [GitHub#21]</li>
         
     | 
| 
       981 
1022 
     | 
    
         
             
            </ul>
         
     | 
| 
       982 
1023 
     | 
    
         
             
            </div>
         
     | 
| 
       983 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       984 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1024 
     | 
    
         
            +
            <div class="section" id="id60">
         
     | 
| 
      
 1025 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id60" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       985 
1026 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       986 
1027 
     | 
    
         
             
            <li>Fixed a build problem about groonga-httpd on Mac OS X.
         
     | 
| 
       987 
1028 
     | 
    
         
             
            [Reported by SHIMADA Koji]</li>
         
     | 
| 
         @@ -997,8 +1038,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li> 
     | 
|
| 
       997 
1038 
     | 
    
         
             
            [#1429] [Reported by IWAI, Masaharu]</li>
         
     | 
| 
       998 
1039 
     | 
    
         
             
            </ul>
         
     | 
| 
       999 
1040 
     | 
    
         
             
            </div>
         
     | 
| 
       1000 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1001 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1041 
     | 
    
         
            +
            <div class="section" id="id61">
         
     | 
| 
      
 1042 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id61" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1002 
1043 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1003 
1044 
     | 
    
         
             
            <li>SHIMADA Koji</li>
         
     | 
| 
       1004 
1045 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
         @@ -1007,8 +1048,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li> 
     | 
|
| 
       1007 
1048 
     | 
    
         
             
            </div>
         
     | 
| 
       1008 
1049 
     | 
    
         
             
            <div class="section" id="release-2-0-4-2012-06-29">
         
     | 
| 
       1009 
1050 
     | 
    
         
             
            <span id="release-2-0-4"></span><h2>Release 2.0.4 - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       1010 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1011 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1051 
     | 
    
         
            +
            <div class="section" id="id62">
         
     | 
| 
      
 1052 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id62" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1012 
1053 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1013 
1054 
     | 
    
         
             
            <li>Supported only KyTea 0.4.2.</li>
         
     | 
| 
       1014 
1055 
     | 
    
         
             
            <li>Dropped KyTea 0.4.1 or ealier support.</li>
         
     | 
| 
         @@ -1035,8 +1076,8 @@ See <a class="reference internal" href="reference/grn_expr/query_syntax.html#con 
     | 
|
| 
       1035 
1076 
     | 
    
         
             
            [GitHub#18] [Patch by IWAI, Masaharu]</li>
         
     | 
| 
       1036 
1077 
     | 
    
         
             
            </ul>
         
     | 
| 
       1037 
1078 
     | 
    
         
             
            </div>
         
     | 
| 
       1038 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1039 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1079 
     | 
    
         
            +
            <div class="section" id="id63">
         
     | 
| 
      
 1080 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id63" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1040 
1081 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1041 
1082 
     | 
    
         
             
            <li>Fixed a problem that display of command prompt changes to not intended state
         
     | 
| 
       1042 
1083 
     | 
    
         
             
            by using batch mode on Mac OS X.
         
     | 
| 
         @@ -1045,8 +1086,8 @@ by using batch mode on Mac OS X. 
     | 
|
| 
       1045 
1086 
     | 
    
         
             
            <li>Fixed a problem that '=R' is treated as 'OR' in <tt class="docutils literal"><span class="pre">--query</span></tt> syntax. [#1393]</li>
         
     | 
| 
       1046 
1087 
     | 
    
         
             
            </ul>
         
     | 
| 
       1047 
1088 
     | 
    
         
             
            </div>
         
     | 
| 
       1048 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1049 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1089 
     | 
    
         
            +
            <div class="section" id="id64">
         
     | 
| 
      
 1090 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id64" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1050 
1091 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1051 
1092 
     | 
    
         
             
            <li>@soundkitchen</li>
         
     | 
| 
       1052 
1093 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
         @@ -1055,8 +1096,8 @@ by using batch mode on Mac OS X. 
     | 
|
| 
       1055 
1096 
     | 
    
         
             
            </div>
         
     | 
| 
       1056 
1097 
     | 
    
         
             
            <div class="section" id="release-2-0-3-2012-05-29">
         
     | 
| 
       1057 
1098 
     | 
    
         
             
            <span id="release-2-0-3"></span><h2>Release 2.0.3 - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       1058 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1059 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1099 
     | 
    
         
            +
            <div class="section" id="id65">
         
     | 
| 
      
 1100 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id65" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1060 
1101 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1061 
1102 
     | 
    
         
             
            <li>[doc] Added about release procedure.</li>
         
     | 
| 
       1062 
1103 
     | 
    
         
             
            <li>Removed restriction that the max number of opened files is 4096.</li>
         
     | 
| 
         @@ -1080,8 +1121,8 @@ groonga-repository to groonga-release to follow RPM package name 
     | 
|
| 
       1080 
1121 
     | 
    
         
             
            convension such as centos-release and fedora-release.</li>
         
     | 
| 
       1081 
1122 
     | 
    
         
             
            </ul>
         
     | 
| 
       1082 
1123 
     | 
    
         
             
            </div>
         
     | 
| 
       1083 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1084 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1124 
     | 
    
         
            +
            <div class="section" id="id66">
         
     | 
| 
      
 1125 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id66" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1085 
1126 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1086 
1127 
     | 
    
         
             
            <li>[doc] Fixed a command to update yum repository.
         
     | 
| 
       1087 
1128 
     | 
    
         
             
            [Suggested by IWAI, Masaharu]</li>
         
     | 
| 
         @@ -1094,8 +1135,8 @@ expression. [#1372]</li> 
     | 
|
| 
       1094 
1135 
     | 
    
         
             
            <li>Fixed a bug that a record key registered via index source isn't normalized.</li>
         
     | 
| 
       1095 
1136 
     | 
    
         
             
            </ul>
         
     | 
| 
       1096 
1137 
     | 
    
         
             
            </div>
         
     | 
| 
       1097 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1098 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1138 
     | 
    
         
            +
            <div class="section" id="id67">
         
     | 
| 
      
 1139 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id67" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1099 
1140 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1100 
1141 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       1101 
1142 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -1118,8 +1159,8 @@ package sign key before updating groogna packages.</p> 
     | 
|
| 
       1118 
1159 
     | 
    
         
             
            </pre></div>
         
     | 
| 
       1119 
1160 
     | 
    
         
             
            </div>
         
     | 
| 
       1120 
1161 
     | 
    
         
             
            </div>
         
     | 
| 
       1121 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1122 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1162 
     | 
    
         
            +
            <div class="section" id="id68">
         
     | 
| 
      
 1163 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id68" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1123 
1164 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1124 
1165 
     | 
    
         
             
            <li>[pkg-config] Removed needless MessagePack dependency.</li>
         
     | 
| 
       1125 
1166 
     | 
    
         
             
            <li>[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]</li>
         
     | 
| 
         @@ -1139,8 +1180,8 @@ is the similar search syntax. [#1342]</li> 
     | 
|
| 
       1139 
1180 
     | 
    
         
             
            package sign key.</li>
         
     | 
| 
       1140 
1181 
     | 
    
         
             
            </ul>
         
     | 
| 
       1141 
1182 
     | 
    
         
             
            </div>
         
     | 
| 
       1142 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1143 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1183 
     | 
    
         
            +
            <div class="section" id="id69">
         
     | 
| 
      
 1184 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id69" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1144 
1185 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1145 
1186 
     | 
    
         
             
            <li>[deb][rpm] Used <tt class="docutils literal"><span class="pre">--bind-address</span></tt> option instead of deprecated
         
     | 
| 
       1146 
1187 
     | 
    
         
             
            <tt class="docutils literal"><span class="pre">--address</span></tt> option.
         
     | 
| 
         @@ -1162,8 +1203,8 @@ inverted index. [#1329]</li> 
     | 
|
| 
       1162 
1203 
     | 
    
         
             
            [#1340] [Reported by Shinya Kawaji]</li>
         
     | 
| 
       1163 
1204 
     | 
    
         
             
            </ul>
         
     | 
| 
       1164 
1205 
     | 
    
         
             
            </div>
         
     | 
| 
       1165 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1166 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1206 
     | 
    
         
            +
            <div class="section" id="id70">
         
     | 
| 
      
 1207 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id70" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1167 
1208 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1168 
1209 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       1169 
1210 
     | 
    
         
             
            <li>Daiki Ueno</li>
         
     | 
| 
         @@ -1173,8 +1214,8 @@ inverted index. [#1329]</li> 
     | 
|
| 
       1173 
1214 
     | 
    
         
             
            </div>
         
     | 
| 
       1174 
1215 
     | 
    
         
             
            <div class="section" id="release-2-0-1-2012-03-29">
         
     | 
| 
       1175 
1216 
     | 
    
         
             
            <span id="release-2-0-1"></span><h2>Release 2.0.1 - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       1176 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1177 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1217 
     | 
    
         
            +
            <div class="section" id="id71">
         
     | 
| 
      
 1218 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id71" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1178 
1219 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1179 
1220 
     | 
    
         
             
            <li>Supported build in other directory.
         
     | 
| 
       1180 
1221 
     | 
    
         
             
            [#1298] [Reported by Kazuhiko]</li>
         
     | 
| 
         @@ -1196,8 +1237,8 @@ check. [#1289]</li> 
     | 
|
| 
       1196 
1237 
     | 
    
         
             
            <li><tt class="docutils literal"><span class="pre">grn_snip</span></tt> uses <tt class="docutils literal"><span class="pre">grn_obj</span></tt> mechanism. [#1054]</li>
         
     | 
| 
       1197 
1238 
     | 
    
         
             
            </ul>
         
     | 
| 
       1198 
1239 
     | 
    
         
             
            </div>
         
     | 
| 
       1199 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1200 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1240 
     | 
    
         
            +
            <div class="section" id="id72">
         
     | 
| 
      
 1241 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id72" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1201 
1242 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1202 
1243 
     | 
    
         
             
            <li>Fixed a bug that uninstall task doesn't uninstall installed Ruby
         
     | 
| 
       1203 
1244 
     | 
    
         
             
            scripts. [#1299] [Reported by Kazuhiko]</li>
         
     | 
| 
         @@ -1208,8 +1249,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1208 
1249 
     | 
    
         
             
            <li>Fixed a bug that latin1 normalization may access unexpected memory.</li>
         
     | 
| 
       1209 
1250 
     | 
    
         
             
            </ul>
         
     | 
| 
       1210 
1251 
     | 
    
         
             
            </div>
         
     | 
| 
       1211 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1212 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1252 
     | 
    
         
            +
            <div class="section" id="id73">
         
     | 
| 
      
 1253 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id73" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1213 
1254 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1214 
1255 
     | 
    
         
             
            <li>Kazuhiko</li>
         
     | 
| 
       1215 
1256 
     | 
    
         
             
            <li>Markus Elfring</li>
         
     | 
| 
         @@ -1218,8 +1259,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1218 
1259 
     | 
    
         
             
            </div>
         
     | 
| 
       1219 
1260 
     | 
    
         
             
            <div class="section" id="release-2-0-0-2012-02-29">
         
     | 
| 
       1220 
1261 
     | 
    
         
             
            <span id="release-2-0-0"></span><h2>Release 2.0.0 - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       1221 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1222 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1262 
     | 
    
         
            +
            <div class="section" id="id74">
         
     | 
| 
      
 1263 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id74" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1223 
1264 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1224 
1265 
     | 
    
         
             
            <li>[dat] Added 0 length key check.</li>
         
     | 
| 
       1225 
1266 
     | 
    
         
             
            <li>[windows] Added missing GCC related DLLs. [groonga-dev,00686]
         
     | 
| 
         @@ -1243,8 +1284,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1243 
1284 
     | 
    
         
             
            <li>[windows] Supported MessagePack.</li>
         
     | 
| 
       1244 
1285 
     | 
    
         
             
            </ul>
         
     | 
| 
       1245 
1286 
     | 
    
         
             
            </div>
         
     | 
| 
       1246 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1247 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1287 
     | 
    
         
            +
            <div class="section" id="id75">
         
     | 
| 
      
 1288 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id75" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1248 
1289 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1249 
1290 
     | 
    
         
             
            <li>[pat] Fixed a bug that the last node can't be found. [#1258]</li>
         
     | 
| 
       1250 
1291 
     | 
    
         
             
            <li>[doc] Fixed links in Japanese page. [Reported by @naoina]</li>
         
     | 
| 
         @@ -1254,8 +1295,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1254 
1295 
     | 
    
         
             
            [Reported by @wareohji]</li>
         
     | 
| 
       1255 
1296 
     | 
    
         
             
            </ul>
         
     | 
| 
       1256 
1297 
     | 
    
         
             
            </div>
         
     | 
| 
       1257 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1258 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1298 
     | 
    
         
            +
            <div class="section" id="id76">
         
     | 
| 
      
 1299 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id76" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1259 
1300 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1260 
1301 
     | 
    
         
             
            <li>Suzuki</li>
         
     | 
| 
       1261 
1302 
     | 
    
         
             
            <li>Daiki Ueno</li>
         
     | 
| 
         @@ -1268,8 +1309,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1268 
1309 
     | 
    
         
             
            </div>
         
     | 
| 
       1269 
1310 
     | 
    
         
             
            <div class="section" id="release-1-3-0-2012-01-29">
         
     | 
| 
       1270 
1311 
     | 
    
         
             
            <span id="release-1-3-0"></span><h2>Release 1.3.0 - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       1271 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1272 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1312 
     | 
    
         
            +
            <div class="section" id="id77">
         
     | 
| 
      
 1313 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id77" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1273 
1314 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1274 
1315 
     | 
    
         
             
            <li>Supported dynamic DB key table change by
         
     | 
| 
       1275 
1316 
     | 
    
         
             
            GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.</li>
         
     | 
| 
         @@ -1304,8 +1345,8 @@ USE_OFFLINE_INDEXER=yes environment variable.</li> 
     | 
|
| 
       1304 
1345 
     | 
    
         
             
            <li>Added <tt class="docutils literal"><span class="pre">column_rename</span></tt>. [#1234]</li>
         
     | 
| 
       1305 
1346 
     | 
    
         
             
            </ul>
         
     | 
| 
       1306 
1347 
     | 
    
         
             
            </div>
         
     | 
| 
       1307 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1308 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1348 
     | 
    
         
            +
            <div class="section" id="id78">
         
     | 
| 
      
 1349 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id78" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1309 
1350 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1310 
1351 
     | 
    
         
             
            <li>montywi</li>
         
     | 
| 
       1311 
1352 
     | 
    
         
             
            <li>Masaharu IWAI</li>
         
     | 
| 
         @@ -1426,166 +1467,172 @@ USE_OFFLINE_INDEXER=yes environment variable.</li> 
     | 
|
| 
       1426 
1467 
     | 
    
         
             
              <h3><a href="index.html">Table Of Contents</a></h3>
         
     | 
| 
       1427 
1468 
     | 
    
         
             
              <ul>
         
     | 
| 
       1428 
1469 
     | 
    
         
             
            <li><a class="reference internal" href="#">News</a><ul>
         
     | 
| 
       1429 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-4-0- 
     | 
| 
      
 1470 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-1-2014-03-29">Release 4.0.1 - 2014/03/29</a><ul>
         
     | 
| 
       1430 
1471 
     | 
    
         
             
            <li><a class="reference internal" href="#improvements">Improvements</a></li>
         
     | 
| 
       1431 
1472 
     | 
    
         
             
            <li><a class="reference internal" href="#fixes">Fixes</a></li>
         
     | 
| 
       1432 
1473 
     | 
    
         
             
            <li><a class="reference internal" href="#thanks">Thanks</a></li>
         
     | 
| 
       1433 
1474 
     | 
    
         
             
            </ul>
         
     | 
| 
       1434 
1475 
     | 
    
         
             
            </li>
         
     | 
| 
       1435 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
      
 1476 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-0-2014-02-09">Release 4.0.0 - 2014/02/09</a><ul>
         
     | 
| 
       1436 
1477 
     | 
    
         
             
            <li><a class="reference internal" href="#id1">Improvements</a></li>
         
     | 
| 
       1437 
1478 
     | 
    
         
             
            <li><a class="reference internal" href="#id2">Fixes</a></li>
         
     | 
| 
       1438 
1479 
     | 
    
         
             
            <li><a class="reference internal" href="#id3">Thanks</a></li>
         
     | 
| 
       1439 
1480 
     | 
    
         
             
            </ul>
         
     | 
| 
       1440 
1481 
     | 
    
         
             
            </li>
         
     | 
| 
       1441 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-1- 
     | 
| 
      
 1482 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-2-2014-01-29">Release 3.1.2 - 2014/01/29</a><ul>
         
     | 
| 
       1442 
1483 
     | 
    
         
             
            <li><a class="reference internal" href="#id4">Improvements</a></li>
         
     | 
| 
       1443 
1484 
     | 
    
         
             
            <li><a class="reference internal" href="#id5">Fixes</a></li>
         
     | 
| 
       1444 
1485 
     | 
    
         
             
            <li><a class="reference internal" href="#id6">Thanks</a></li>
         
     | 
| 
       1445 
1486 
     | 
    
         
             
            </ul>
         
     | 
| 
       1446 
1487 
     | 
    
         
             
            </li>
         
     | 
| 
       1447 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-1- 
     | 
| 
      
 1488 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-1-2013-12-29">Release 3.1.1 - 2013/12/29</a><ul>
         
     | 
| 
       1448 
1489 
     | 
    
         
             
            <li><a class="reference internal" href="#id7">Improvements</a></li>
         
     | 
| 
       1449 
1490 
     | 
    
         
             
            <li><a class="reference internal" href="#id8">Fixes</a></li>
         
     | 
| 
       1450 
1491 
     | 
    
         
             
            <li><a class="reference internal" href="#id9">Thanks</a></li>
         
     | 
| 
       1451 
1492 
     | 
    
         
             
            </ul>
         
     | 
| 
       1452 
1493 
     | 
    
         
             
            </li>
         
     | 
| 
       1453 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1494 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-0-2013-11-29">Release 3.1.0 - 2013/11/29</a><ul>
         
     | 
| 
       1454 
1495 
     | 
    
         
             
            <li><a class="reference internal" href="#id10">Improvements</a></li>
         
     | 
| 
       1455 
1496 
     | 
    
         
             
            <li><a class="reference internal" href="#id11">Fixes</a></li>
         
     | 
| 
       1456 
1497 
     | 
    
         
             
            <li><a class="reference internal" href="#id12">Thanks</a></li>
         
     | 
| 
       1457 
1498 
     | 
    
         
             
            </ul>
         
     | 
| 
       1458 
1499 
     | 
    
         
             
            </li>
         
     | 
| 
       1459 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1500 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-9-2013-10-29">Release 3.0.9 - 2013/10/29</a><ul>
         
     | 
| 
       1460 
1501 
     | 
    
         
             
            <li><a class="reference internal" href="#id13">Improvements</a></li>
         
     | 
| 
       1461 
1502 
     | 
    
         
             
            <li><a class="reference internal" href="#id14">Fixes</a></li>
         
     | 
| 
       1462 
1503 
     | 
    
         
             
            <li><a class="reference internal" href="#id15">Thanks</a></li>
         
     | 
| 
       1463 
1504 
     | 
    
         
             
            </ul>
         
     | 
| 
       1464 
1505 
     | 
    
         
             
            </li>
         
     | 
| 
       1465 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1506 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-8-2013-09-29">Release 3.0.8 - 2013/09/29</a><ul>
         
     | 
| 
       1466 
1507 
     | 
    
         
             
            <li><a class="reference internal" href="#id16">Improvements</a></li>
         
     | 
| 
       1467 
1508 
     | 
    
         
             
            <li><a class="reference internal" href="#id17">Fixes</a></li>
         
     | 
| 
       1468 
1509 
     | 
    
         
             
            <li><a class="reference internal" href="#id18">Thanks</a></li>
         
     | 
| 
       1469 
1510 
     | 
    
         
             
            </ul>
         
     | 
| 
       1470 
1511 
     | 
    
         
             
            </li>
         
     | 
| 
       1471 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1512 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-7-2013-08-29">Release 3.0.7 - 2013/08/29</a><ul>
         
     | 
| 
       1472 
1513 
     | 
    
         
             
            <li><a class="reference internal" href="#id19">Improvements</a></li>
         
     | 
| 
       1473 
1514 
     | 
    
         
             
            <li><a class="reference internal" href="#id20">Fixes</a></li>
         
     | 
| 
       1474 
1515 
     | 
    
         
             
            <li><a class="reference internal" href="#id21">Thanks</a></li>
         
     | 
| 
       1475 
1516 
     | 
    
         
             
            </ul>
         
     | 
| 
       1476 
1517 
     | 
    
         
             
            </li>
         
     | 
| 
       1477 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1518 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-6-2013-07-29">Release 3.0.6 - 2013/07/29</a><ul>
         
     | 
| 
       1478 
1519 
     | 
    
         
             
            <li><a class="reference internal" href="#id22">Improvements</a></li>
         
     | 
| 
       1479 
1520 
     | 
    
         
             
            <li><a class="reference internal" href="#id23">Fixes</a></li>
         
     | 
| 
       1480 
1521 
     | 
    
         
             
            <li><a class="reference internal" href="#id24">Thanks</a></li>
         
     | 
| 
       1481 
1522 
     | 
    
         
             
            </ul>
         
     | 
| 
       1482 
1523 
     | 
    
         
             
            </li>
         
     | 
| 
       1483 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1524 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-5-2013-06-29">Release 3.0.5 - 2013/06/29</a><ul>
         
     | 
| 
       1484 
1525 
     | 
    
         
             
            <li><a class="reference internal" href="#id25">Improvements</a></li>
         
     | 
| 
       1485 
1526 
     | 
    
         
             
            <li><a class="reference internal" href="#id26">Fixes</a></li>
         
     | 
| 
       1486 
1527 
     | 
    
         
             
            <li><a class="reference internal" href="#id27">Thanks</a></li>
         
     | 
| 
       1487 
1528 
     | 
    
         
             
            </ul>
         
     | 
| 
       1488 
1529 
     | 
    
         
             
            </li>
         
     | 
| 
       1489 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1530 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-4-2013-05-29">Release 3.0.4 - 2013/05/29</a><ul>
         
     | 
| 
       1490 
1531 
     | 
    
         
             
            <li><a class="reference internal" href="#id28">Improvements</a></li>
         
     | 
| 
      
 1532 
     | 
    
         
            +
            <li><a class="reference internal" href="#id29">Fixes</a></li>
         
     | 
| 
      
 1533 
     | 
    
         
            +
            <li><a class="reference internal" href="#id30">Thanks</a></li>
         
     | 
| 
       1491 
1534 
     | 
    
         
             
            </ul>
         
     | 
| 
       1492 
1535 
     | 
    
         
             
            </li>
         
     | 
| 
       1493 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
       1494 
     | 
    
         
            -
            <li><a class="reference internal" href="# 
     | 
| 
       1495 
     | 
    
         
            -
            <li><a class="reference internal" href="#id30">Fixes</a></li>
         
     | 
| 
       1496 
     | 
    
         
            -
            <li><a class="reference internal" href="#id31">Thanks</a></li>
         
     | 
| 
      
 1536 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-3-2013-04-29">Release 3.0.3 - 2013/04/29</a><ul>
         
     | 
| 
      
 1537 
     | 
    
         
            +
            <li><a class="reference internal" href="#id31">Improvements</a></li>
         
     | 
| 
       1497 
1538 
     | 
    
         
             
            </ul>
         
     | 
| 
       1498 
1539 
     | 
    
         
             
            </li>
         
     | 
| 
       1499 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1540 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-2-2013-03-29">Release 3.0.2 - 2013/03/29</a><ul>
         
     | 
| 
       1500 
1541 
     | 
    
         
             
            <li><a class="reference internal" href="#id32">Improvements</a></li>
         
     | 
| 
       1501 
1542 
     | 
    
         
             
            <li><a class="reference internal" href="#id33">Fixes</a></li>
         
     | 
| 
       1502 
1543 
     | 
    
         
             
            <li><a class="reference internal" href="#id34">Thanks</a></li>
         
     | 
| 
       1503 
1544 
     | 
    
         
             
            </ul>
         
     | 
| 
       1504 
1545 
     | 
    
         
             
            </li>
         
     | 
| 
       1505 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
       1506 
     | 
    
         
            -
            <li><a class="reference internal" href="#id35"> 
     | 
| 
       1507 
     | 
    
         
            -
            <li><a class="reference internal" href="#id36"> 
     | 
| 
      
 1546 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-1-2013-02-28">Release 3.0.1 - 2013/02/28</a><ul>
         
     | 
| 
      
 1547 
     | 
    
         
            +
            <li><a class="reference internal" href="#id35">Improvements</a></li>
         
     | 
| 
      
 1548 
     | 
    
         
            +
            <li><a class="reference internal" href="#id36">Fixes</a></li>
         
     | 
| 
      
 1549 
     | 
    
         
            +
            <li><a class="reference internal" href="#id37">Thanks</a></li>
         
     | 
| 
       1508 
1550 
     | 
    
         
             
            </ul>
         
     | 
| 
       1509 
1551 
     | 
    
         
             
            </li>
         
     | 
| 
       1510 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
       1511 
     | 
    
         
            -
            <li><a class="reference internal" href="#id37">Improvements</a></li>
         
     | 
| 
      
 1552 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-0-2013-02-09">Release 3.0.0 - 2013/02/09</a><ul>
         
     | 
| 
       1512 
1553 
     | 
    
         
             
            <li><a class="reference internal" href="#id38">Fixes</a></li>
         
     | 
| 
       1513 
1554 
     | 
    
         
             
            <li><a class="reference internal" href="#id39">Thanks</a></li>
         
     | 
| 
       1514 
1555 
     | 
    
         
             
            </ul>
         
     | 
| 
       1515 
1556 
     | 
    
         
             
            </li>
         
     | 
| 
       1516 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-1- 
     | 
| 
       1517 
     | 
    
         
            -
            <li><a class="reference internal" href="#id40"> 
     | 
| 
      
 1557 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-2-2013-01-29">Release 2.1.2 - 2013/01/29</a><ul>
         
     | 
| 
      
 1558 
     | 
    
         
            +
            <li><a class="reference internal" href="#id40">Improvements</a></li>
         
     | 
| 
      
 1559 
     | 
    
         
            +
            <li><a class="reference internal" href="#id41">Fixes</a></li>
         
     | 
| 
      
 1560 
     | 
    
         
            +
            <li><a class="reference internal" href="#id42">Thanks</a></li>
         
     | 
| 
       1518 
1561 
     | 
    
         
             
            </ul>
         
     | 
| 
       1519 
1562 
     | 
    
         
             
            </li>
         
     | 
| 
       1520 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-1- 
     | 
| 
       1521 
     | 
    
         
            -
            <li><a class="reference internal" href="# 
     | 
| 
       1522 
     | 
    
         
            -
            <li><a class="reference internal" href="#id42">Fixes</a></li>
         
     | 
| 
       1523 
     | 
    
         
            -
            <li><a class="reference internal" href="#id43">Thanks</a></li>
         
     | 
| 
      
 1563 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-1-2012-12-29">Release 2.1.1 - 2012/12/29</a><ul>
         
     | 
| 
      
 1564 
     | 
    
         
            +
            <li><a class="reference internal" href="#id43">Fixes</a></li>
         
     | 
| 
       1524 
1565 
     | 
    
         
             
            </ul>
         
     | 
| 
       1525 
1566 
     | 
    
         
             
            </li>
         
     | 
| 
       1526 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1567 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-0-2012-12-29">Release 2.1.0 - 2012/12/29</a><ul>
         
     | 
| 
       1527 
1568 
     | 
    
         
             
            <li><a class="reference internal" href="#id44">Improvements</a></li>
         
     | 
| 
       1528 
1569 
     | 
    
         
             
            <li><a class="reference internal" href="#id45">Fixes</a></li>
         
     | 
| 
       1529 
1570 
     | 
    
         
             
            <li><a class="reference internal" href="#id46">Thanks</a></li>
         
     | 
| 
       1530 
1571 
     | 
    
         
             
            </ul>
         
     | 
| 
       1531 
1572 
     | 
    
         
             
            </li>
         
     | 
| 
       1532 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1573 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-9-2012-11-29">Release 2.0.9 - 2012/11/29</a><ul>
         
     | 
| 
       1533 
1574 
     | 
    
         
             
            <li><a class="reference internal" href="#id47">Improvements</a></li>
         
     | 
| 
       1534 
1575 
     | 
    
         
             
            <li><a class="reference internal" href="#id48">Fixes</a></li>
         
     | 
| 
       1535 
1576 
     | 
    
         
             
            <li><a class="reference internal" href="#id49">Thanks</a></li>
         
     | 
| 
       1536 
1577 
     | 
    
         
             
            </ul>
         
     | 
| 
       1537 
1578 
     | 
    
         
             
            </li>
         
     | 
| 
       1538 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1579 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-8-2012-10-29">Release 2.0.8 - 2012/10/29</a><ul>
         
     | 
| 
       1539 
1580 
     | 
    
         
             
            <li><a class="reference internal" href="#id50">Improvements</a></li>
         
     | 
| 
       1540 
1581 
     | 
    
         
             
            <li><a class="reference internal" href="#id51">Fixes</a></li>
         
     | 
| 
       1541 
1582 
     | 
    
         
             
            <li><a class="reference internal" href="#id52">Thanks</a></li>
         
     | 
| 
       1542 
1583 
     | 
    
         
             
            </ul>
         
     | 
| 
       1543 
1584 
     | 
    
         
             
            </li>
         
     | 
| 
       1544 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1585 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-7-2012-09-29">Release 2.0.7 - 2012/09/29</a><ul>
         
     | 
| 
       1545 
1586 
     | 
    
         
             
            <li><a class="reference internal" href="#id53">Improvements</a></li>
         
     | 
| 
       1546 
1587 
     | 
    
         
             
            <li><a class="reference internal" href="#id54">Fixes</a></li>
         
     | 
| 
       1547 
1588 
     | 
    
         
             
            <li><a class="reference internal" href="#id55">Thanks</a></li>
         
     | 
| 
       1548 
1589 
     | 
    
         
             
            </ul>
         
     | 
| 
       1549 
1590 
     | 
    
         
             
            </li>
         
     | 
| 
       1550 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1591 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-6-2012-08-29">Release 2.0.6 - 2012/08/29</a><ul>
         
     | 
| 
       1551 
1592 
     | 
    
         
             
            <li><a class="reference internal" href="#id56">Improvements</a></li>
         
     | 
| 
       1552 
1593 
     | 
    
         
             
            <li><a class="reference internal" href="#id57">Fixes</a></li>
         
     | 
| 
       1553 
1594 
     | 
    
         
             
            <li><a class="reference internal" href="#id58">Thanks</a></li>
         
     | 
| 
       1554 
1595 
     | 
    
         
             
            </ul>
         
     | 
| 
       1555 
1596 
     | 
    
         
             
            </li>
         
     | 
| 
       1556 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1597 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-5-2012-07-29">Release 2.0.5 - 2012/07/29</a><ul>
         
     | 
| 
       1557 
1598 
     | 
    
         
             
            <li><a class="reference internal" href="#id59">Improvements</a></li>
         
     | 
| 
       1558 
1599 
     | 
    
         
             
            <li><a class="reference internal" href="#id60">Fixes</a></li>
         
     | 
| 
       1559 
1600 
     | 
    
         
             
            <li><a class="reference internal" href="#id61">Thanks</a></li>
         
     | 
| 
       1560 
1601 
     | 
    
         
             
            </ul>
         
     | 
| 
       1561 
1602 
     | 
    
         
             
            </li>
         
     | 
| 
       1562 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1603 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-4-2012-06-29">Release 2.0.4 - 2012/06/29</a><ul>
         
     | 
| 
       1563 
1604 
     | 
    
         
             
            <li><a class="reference internal" href="#id62">Improvements</a></li>
         
     | 
| 
       1564 
1605 
     | 
    
         
             
            <li><a class="reference internal" href="#id63">Fixes</a></li>
         
     | 
| 
       1565 
1606 
     | 
    
         
             
            <li><a class="reference internal" href="#id64">Thanks</a></li>
         
     | 
| 
       1566 
1607 
     | 
    
         
             
            </ul>
         
     | 
| 
       1567 
1608 
     | 
    
         
             
            </li>
         
     | 
| 
       1568 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1609 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-3-2012-05-29">Release 2.0.3 - 2012/05/29</a><ul>
         
     | 
| 
       1569 
1610 
     | 
    
         
             
            <li><a class="reference internal" href="#id65">Improvements</a></li>
         
     | 
| 
       1570 
1611 
     | 
    
         
             
            <li><a class="reference internal" href="#id66">Fixes</a></li>
         
     | 
| 
       1571 
1612 
     | 
    
         
             
            <li><a class="reference internal" href="#id67">Thanks</a></li>
         
     | 
| 
       1572 
1613 
     | 
    
         
             
            </ul>
         
     | 
| 
       1573 
1614 
     | 
    
         
             
            </li>
         
     | 
| 
       1574 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1615 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-2-2012-04-29">Release 2.0.2 - 2012/04/29</a><ul>
         
     | 
| 
       1575 
1616 
     | 
    
         
             
            <li><a class="reference internal" href="#id68">Improvements</a></li>
         
     | 
| 
       1576 
1617 
     | 
    
         
             
            <li><a class="reference internal" href="#id69">Fixes</a></li>
         
     | 
| 
       1577 
1618 
     | 
    
         
             
            <li><a class="reference internal" href="#id70">Thanks</a></li>
         
     | 
| 
       1578 
1619 
     | 
    
         
             
            </ul>
         
     | 
| 
       1579 
1620 
     | 
    
         
             
            </li>
         
     | 
| 
       1580 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1621 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-1-2012-03-29">Release 2.0.1 - 2012/03/29</a><ul>
         
     | 
| 
       1581 
1622 
     | 
    
         
             
            <li><a class="reference internal" href="#id71">Improvements</a></li>
         
     | 
| 
       1582 
1623 
     | 
    
         
             
            <li><a class="reference internal" href="#id72">Fixes</a></li>
         
     | 
| 
       1583 
1624 
     | 
    
         
             
            <li><a class="reference internal" href="#id73">Thanks</a></li>
         
     | 
| 
       1584 
1625 
     | 
    
         
             
            </ul>
         
     | 
| 
       1585 
1626 
     | 
    
         
             
            </li>
         
     | 
| 
       1586 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
      
 1627 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-0-2012-02-29">Release 2.0.0 - 2012/02/29</a><ul>
         
     | 
| 
       1587 
1628 
     | 
    
         
             
            <li><a class="reference internal" href="#id74">Improvements</a></li>
         
     | 
| 
       1588 
     | 
    
         
            -
            <li><a class="reference internal" href="#id75"> 
     | 
| 
      
 1629 
     | 
    
         
            +
            <li><a class="reference internal" href="#id75">Fixes</a></li>
         
     | 
| 
      
 1630 
     | 
    
         
            +
            <li><a class="reference internal" href="#id76">Thanks</a></li>
         
     | 
| 
      
 1631 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1632 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1633 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-1-3-0-2012-01-29">Release 1.3.0 - 2012/01/29</a><ul>
         
     | 
| 
      
 1634 
     | 
    
         
            +
            <li><a class="reference internal" href="#id77">Improvements</a></li>
         
     | 
| 
      
 1635 
     | 
    
         
            +
            <li><a class="reference internal" href="#id78">Thanks</a></li>
         
     | 
| 
       1589 
1636 
     | 
    
         
             
            </ul>
         
     | 
| 
       1590 
1637 
     | 
    
         
             
            </li>
         
     | 
| 
       1591 
1638 
     | 
    
         
             
            <li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
         
     | 
| 
         @@ -1623,7 +1670,7 @@ USE_OFFLINE_INDEXER=yes environment variable.</li> 
     | 
|
| 
       1623 
1670 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       1624 
1671 
     | 
    
         
             
                      <a href="genindex.html" title="General Index"
         
     | 
| 
       1625 
1672 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       1626 
     | 
    
         
            -
                    <li><a href="index.html">Groonga  
     | 
| 
      
 1673 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1 documentation</a> »</li> 
         
     | 
| 
       1627 
1674 
     | 
    
         
             
                  </ul>
         
     | 
| 
       1628 
1675 
     | 
    
         
             
                </div>
         
     | 
| 
       1629 
1676 
     | 
    
         
             
                <div class="footer" role="contentinfo">
         
     |