rroonga 4.0.1-x86-mingw32 → 4.0.2-x86-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/doc/text/news.textile +25 -0
 - data/ext/groonga/extconf.rb +2 -0
 - data/ext/groonga/rb-grn-index-column.c +91 -0
 - data/ext/groonga/rb-grn-object.c +3 -9
 - data/ext/groonga/rb-grn-table.c +18 -24
 - data/ext/groonga/rb-grn.h +1 -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 +1 -1
 - data/lib/groonga/patricia-trie.rb +4 -1
 - data/lib/groonga/schema.rb +10 -4
 - data/rroonga-build.rb +1 -1
 - data/test/test-context.rb +8 -8
 - data/test/test-database-dumper.rb +6 -6
 - data/test/test-index-column.rb +9 -4
 - data/test/test-schema-dumper.rb +6 -6
 - data/test/test-schema.rb +32 -3
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +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/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga/plugin.h +19 -1
 - data/vendor/local/include/groonga/groonga.h +2 -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/query_expanders/tsv.la +3 -3
 - 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/suggest/suggest.la +3 -3
 - 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/table/table.la +3 -3
 - 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/groonga/plugins/tokenizers/mecab.la +3 -3
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +3 -3
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +1 -1
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +2 -2
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - 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/sbin/groonga-httpd-restart +1 -1
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt +75 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +22 -22
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +10 -11
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +10 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +17 -149
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +73 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_column.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +26 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +1 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/{pseudo_column.txt → columns/pseudo.txt} +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +165 -67
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +28 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +38 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt +17 -0
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +13 -13
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +65 -65
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +102 -102
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +15 -16
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +16 -16
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +202 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +12 -11
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +61 -60
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +53 -19
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/index.html +83 -87
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +30 -151
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/en/html/install.html +10 -13
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
 - 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/news.html +286 -209
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +166 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +36 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/{pseudo_column.html → columns/pseudo.html} +25 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +284 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +221 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +23 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +155 -95
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +31 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +47 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +254 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +43 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +48 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +48 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +44 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +34 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +67 -65
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +20 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/reference.html +72 -74
 - 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/gqtp.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 +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.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/package.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
 - 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/spec.html +10 -10
 - 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 +19 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +6 -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/troubleshooting.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 +6 -6
 - 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 +5 -5
 - 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/en/html/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt +75 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +10 -11
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +17 -149
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +73 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +26 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +1 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/{pseudo_column.txt → columns/pseudo.txt} +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +165 -67
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +28 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +38 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt +17 -0
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +65 -65
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +102 -102
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +40 -40
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +15 -16
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +16 -16
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +203 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +12 -11
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +61 -60
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +53 -19
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/index.html +83 -87
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +26 -26
 - 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 +12 -9
 - 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 +27 -137
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/install.html +7 -10
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
 - 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/news.html +292 -210
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - 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 +29 -29
 - 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 +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +167 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +36 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/{pseudo_column.html → columns/pseudo.html} +26 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.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/command.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
 - 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 +296 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +11 -10
 - 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 +5 -5
 - 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 +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +225 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +23 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +156 -100
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +31 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +47 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +40 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +258 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +26 -26
 - 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 +6 -11
 - 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 +55 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +48 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.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/query_syntax.html +62 -61
 - 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/grn_expr.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +72 -74
 - 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/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +7 -7
 - 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/http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
 - 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/spec.html +10 -10
 - 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 +19 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +6 -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/troubleshooting.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 +5 -5
 - 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 +5 -5
 - 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/doc/groonga/ja/html/tutorial.html +5 -5
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
 - data/vendor/local/share/groonga/html/admin/index.html +0 -1
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +10 -8
 - data/vendor/local/share/man/ja/man1/groonga.1 +1032 -585
 - data/vendor/local/share/man/man1/groonga.1 +1051 -607
 - data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
 - data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
 - metadata +289 -278
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt +0 -43
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +0 -184
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt +0 -43
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +0 -184
 - data/vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js +0 -31
 
| 
         @@ -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 v4.0.1 documentation</title>
         
     | 
| 
      
 10 
     | 
    
         
            +
                <title>News — Groonga v4.0.1-127-g9422d50 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:     '4.0.1',
         
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '4.0.1-127-g9422d50',
         
     | 
| 
       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 v4.0.1 documentation" href="index.html" /> 
         
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v4.0.1-127-g9422d50 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 v4.0.1 documentation</a> »</li> 
         
     | 
| 
      
 54 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1-127-g9422d50 documentation</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
       57 
57 
     | 
    
         | 
| 
         @@ -62,11 +62,81 @@ 
     | 
|
| 
       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- 
     | 
| 
       66 
     | 
    
         
            -
            <span id="release-4-0- 
     | 
| 
      
 65 
     | 
    
         
            +
            <div class="section" id="release-4-0-2-2014-05-29">
         
     | 
| 
      
 66 
     | 
    
         
            +
            <span id="release-4-0-2"></span><h2>Release 4.0.2 - 2014/05/29<a class="headerlink" href="#release-4-0-2-2014-05-29" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       67 
67 
     | 
    
         
             
            <div class="section" id="improvements">
         
     | 
| 
       68 
68 
     | 
    
         
             
            <h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       69 
69 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
      
 70 
     | 
    
         
            +
            <li>[doc] Updated documentation about
         
     | 
| 
      
 71 
     | 
    
         
            +
            <tt class="xref doc docutils literal"><span class="pre">/reference/executables/groonga-suggest-leaner</span></tt>.</li>
         
     | 
| 
      
 72 
     | 
    
         
            +
            <li>[doc] Added documentation about how to update files.
         
     | 
| 
      
 73 
     | 
    
         
            +
            [GitHub#160] [Patch by cosmo0920]</li>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <li>[doc] Updated to caplitalized "Groonga" terms in
         
     | 
| 
      
 75 
     | 
    
         
            +
            documentation. [GitHub#162][GitHub#163][GitHub#164]
         
     | 
| 
      
 76 
     | 
    
         
            +
            [Patch by cosmo0920]</li>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <li>Supported Ubuntu 14.04 (Trusty Tahr).</li>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <li>Dropped Ubuntu 12.10.</li>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li>Migrated Ubuntu package distribution site to PPA on Launchpad.
         
     | 
| 
      
 80 
     | 
    
         
            +
            See <tt class="xref doc docutils literal"><span class="pre">/install/Ubuntu</span></tt> for details.</li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <li>Handled all requests that start with <tt class="docutils literal"><span class="pre">/d/</span></tt> as API requests. You
         
     | 
| 
      
 82 
     | 
    
         
            +
            need to put files to directories that don't start with <tt class="docutils literal"><span class="pre">/d/</span></tt> to
         
     | 
| 
      
 83 
     | 
    
         
            +
            serve by Groonga HTTP service.</li>
         
     | 
| 
      
 84 
     | 
    
         
            +
            <li>[munin] Supported <a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>.
         
     | 
| 
      
 85 
     | 
    
         
            +
            [Reported by Naoya Murakami]</li>
         
     | 
| 
      
 86 
     | 
    
         
            +
            <li>Supported daylight saving time.
         
     | 
| 
      
 87 
     | 
    
         
            +
            [#2546]</li>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <li>[doc] Added a description about <tt class="docutils literal"><span class="pre">--with-mecab</span></tt> in
         
     | 
| 
      
 89 
     | 
    
         
            +
            <a class="reference internal" href="install/mac_os_x.html"><em>Mac OS X</em></a>.</li>
         
     | 
| 
      
 90 
     | 
    
         
            +
            <li>[http] Changed HTTP return code to <tt class="docutils literal"><span class="pre">400</span> <span class="pre">Bad</span> <span class="pre">Request</span></tt> from <tt class="docutils literal"><span class="pre">500</span>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <span class="pre">Internal</span> <span class="pre">Server</span> <span class="pre">Error</span></tt> for syntax error case.</li>
         
     | 
| 
      
 92 
     | 
    
         
            +
            <li>[http][admin] Removed jQuery JSON plugin.
         
     | 
| 
      
 93 
     | 
    
         
            +
            [GitHub#168] [Patch by Tetsuharu OHZEKI]</li>
         
     | 
| 
      
 94 
     | 
    
         
            +
            <li>[http][admin] Enabled strict mode.
         
     | 
| 
      
 95 
     | 
    
         
            +
            [GitHub#169] [Patch by Tetsuharu OHZEKI]</li>
         
     | 
| 
      
 96 
     | 
    
         
            +
            <li>Exported getting variable APIs to <a class="reference internal" href="reference/api/plugin.html"><em>Plugin</em></a>.
         
     | 
| 
      
 97 
     | 
    
         
            +
            [GitHub#170] [Patch by Naoya Murakami]<ul>
         
     | 
| 
      
 98 
     | 
    
         
            +
            <li>Added <tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var()</span></tt>.</li>
         
     | 
| 
      
 99 
     | 
    
         
            +
            <li>Added <tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var_by_offset()</span></tt>.</li>
         
     | 
| 
      
 100 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 101 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 102 
     | 
    
         
            +
            <li>[experimental] Added <a class="reference internal" href="reference/commands/tokenizer_list.html"><em>tokenizer_list</em></a>.
         
     | 
| 
      
 103 
     | 
    
         
            +
            [GitHub#171] [Patch by Naoya Murakami]</li>
         
     | 
| 
      
 104 
     | 
    
         
            +
            <li>[experimental] Added <a class="reference internal" href="reference/commands/normalizer_list.html"><em>normalizer_list</em></a>.
         
     | 
| 
      
 105 
     | 
    
         
            +
            [GitHub#171] [Patch by Naoya Murakami]</li>
         
     | 
| 
      
 106 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 108 
     | 
    
         
            +
            <div class="section" id="fixes">
         
     | 
| 
      
 109 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 110 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 111 
     | 
    
         
            +
            <li>[index] Fixed a bug that wrong max segment. It causes a crash when
         
     | 
| 
      
 112 
     | 
    
         
            +
            you use all allocated resource for an index column.
         
     | 
| 
      
 113 
     | 
    
         
            +
            [#2438] [Reported by GMO Media, Inc.]</li>
         
     | 
| 
      
 114 
     | 
    
         
            +
            <li>[doc] Fixed a typo in <a class="reference internal" href="install/centos.html"><em>CentOS</em></a>.
         
     | 
| 
      
 115 
     | 
    
         
            +
            [GitHub#166] [Patch by Naoya Murakami]</li>
         
     | 
| 
      
 116 
     | 
    
         
            +
            <li>[doc] Fixed the wrong default value of <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> in
         
     | 
| 
      
 117 
     | 
    
         
            +
            <a class="reference internal" href="reference/commands/select.html"><em>select</em></a>.
         
     | 
| 
      
 118 
     | 
    
         
            +
            [GitHub#167] [Patch by Naoya Murakami]</li>
         
     | 
| 
      
 119 
     | 
    
         
            +
            <li>[doc] Added a missing <tt class="docutils literal"><span class="pre">\</span></tt> escape exception in
         
     | 
| 
      
 120 
     | 
    
         
            +
            <a class="reference internal" href="reference/grn_expr/query_syntax.html"><em>Query syntax</em></a>.
         
     | 
| 
      
 121 
     | 
    
         
            +
            [Reported by @Yappo]</li>
         
     | 
| 
      
 122 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 123 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 124 
     | 
    
         
            +
            <div class="section" id="thanks">
         
     | 
| 
      
 125 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 126 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 127 
     | 
    
         
            +
            <li>cosmo0920</li>
         
     | 
| 
      
 128 
     | 
    
         
            +
            <li>Naoya Murakami</li>
         
     | 
| 
      
 129 
     | 
    
         
            +
            <li>Tetsuharu OHZEKI</li>
         
     | 
| 
      
 130 
     | 
    
         
            +
            <li>GMO Media, Inc.</li>
         
     | 
| 
      
 131 
     | 
    
         
            +
            <li>@Yappo</li>
         
     | 
| 
      
 132 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 133 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 134 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 135 
     | 
    
         
            +
            <div class="section" id="release-4-0-1-2014-03-29">
         
     | 
| 
      
 136 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 137 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 138 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 139 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
       70 
140 
     | 
    
         
             
            <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 
141 
     | 
    
         
             
            <li>Supported to inspect vector and object value in JSON load.
         
     | 
| 
       72 
142 
     | 
    
         
             
            It shows more details about data which is failed to load.</li>
         
     | 
| 
         @@ -84,21 +154,22 @@ to create weight vector column.</li> 
     | 
|
| 
       84 
154 
     | 
    
         
             
            <li>[httpd] Enabled stub status module (NginxHttpStubStatusModule) for groonga-httpd. [Suggested by Masahiro Nagano]</li>
         
     | 
| 
       85 
155 
     | 
    
         
             
            </ul>
         
     | 
| 
       86 
156 
     | 
    
         
             
            </div>
         
     | 
| 
       87 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       88 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 157 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 158 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       89 
159 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       90 
160 
     | 
    
         
             
            <li>Fixed a bug that a division overflow caused a fatal error.
         
     | 
| 
       91 
161 
     | 
    
         
             
            For example, it occurs when you execute 'COLUMN / -1' operation to Int32 or Int64 column. [#2307]</li>
         
     | 
| 
       92 
162 
     | 
    
         
             
            <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 
     | 
| 
      
 163 
     | 
    
         
            +
            <li>[doc] Fixed a wrong documentation about <a class="reference internal" href="reference/commands/column_rename.html"><em>column_rename</em></a>. [Reported by nise_nabe]</li>
         
     | 
| 
       94 
164 
     | 
    
         
             
            <li>Fixed the issue that out of bound array element access may occurs. [GitHub#158] [Reported by dcb314]</li>
         
     | 
| 
       95 
165 
     | 
    
         
             
            </ul>
         
     | 
| 
       96 
166 
     | 
    
         
             
            </div>
         
     | 
| 
       97 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       98 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 167 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 168 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       99 
169 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       100 
     | 
    
         
            -
            <li>nise_nabe</li>
         
     | 
| 
       101 
170 
     | 
    
         
             
            <li>Sebastian Wiedenroth</li>
         
     | 
| 
      
 171 
     | 
    
         
            +
            <li>Masahiro Nagano</li>
         
     | 
| 
      
 172 
     | 
    
         
            +
            <li>nise_nabe</li>
         
     | 
| 
       102 
173 
     | 
    
         
             
            <li>dcb314</li>
         
     | 
| 
       103 
174 
     | 
    
         
             
            </ul>
         
     | 
| 
       104 
175 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -108,16 +179,16 @@ For example, it occurs when you execute 'COLUMN / -1' operation to Int32 or Int6 
     | 
|
| 
       108 
179 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       109 
180 
     | 
    
         
             
            <li>Bump version to 4.0.0!</li>
         
     | 
| 
       110 
181 
     | 
    
         
             
            </ul>
         
     | 
| 
       111 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       112 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 182 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 183 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       113 
184 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       114 
185 
     | 
    
         
             
            <li>[normalizer] Supported to show "checks" which is used for calculating next character position.
         
     | 
| 
       115 
186 
     | 
    
         
             
            Use WITH_CHECKS flag to enable this feature.</li>
         
     | 
| 
       116 
187 
     | 
    
         
             
            <li>[deb] Dropped Ubuntu 13.04 support.</li>
         
     | 
| 
       117 
188 
     | 
    
         
             
            </ul>
         
     | 
| 
       118 
189 
     | 
    
         
             
            </div>
         
     | 
| 
       119 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       120 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 190 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 191 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       121 
192 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       122 
193 
     | 
    
         
             
            <li>Fixed a crash bug that an object in grn_expr is used after it is freed.
         
     | 
| 
       123 
194 
     | 
    
         
             
            Normally Groonga server users aren't affected this bug. This bug mainly affects Rroonga users.
         
     | 
| 
         @@ -136,8 +207,8 @@ If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li> 
     | 
|
| 
       136 
207 
     | 
    
         
             
            [groonga-dev,02113] [Reported by Ryoji Yamamoto]</li>
         
     | 
| 
       137 
208 
     | 
    
         
             
            </ul>
         
     | 
| 
       138 
209 
     | 
    
         
             
            </div>
         
     | 
| 
       139 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       140 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 210 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 211 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       141 
212 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       142 
213 
     | 
    
         
             
            <li>yoku</li>
         
     | 
| 
       143 
214 
     | 
    
         
             
            <li>Naoya Murakami</li>
         
     | 
| 
         @@ -147,8 +218,8 @@ If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li> 
     | 
|
| 
       147 
218 
     | 
    
         
             
            </div>
         
     | 
| 
       148 
219 
     | 
    
         
             
            <div class="section" id="release-3-1-2-2014-01-29">
         
     | 
| 
       149 
220 
     | 
    
         
             
            <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>
         
     | 
| 
       150 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       151 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 221 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 222 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       152 
223 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       153 
224 
     | 
    
         
             
            <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>
         
     | 
| 
       154 
225 
     | 
    
         
             
            <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.
         
     | 
| 
         @@ -161,8 +232,8 @@ This change improves missing search results isssue when narrowing down by multip 
     | 
|
| 
       161 
232 
     | 
    
         
             
            <li>Added API to customize normalizer for snippet.</li>
         
     | 
| 
       162 
233 
     | 
    
         
             
            </ul>
         
     | 
| 
       163 
234 
     | 
    
         
             
            </div>
         
     | 
| 
       164 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       165 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 235 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 236 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       166 
237 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       167 
238 
     | 
    
         
             
            <li>Fixed not to use index for empty query. This change enables you to search even though empty query.
         
     | 
| 
       168 
239 
     | 
    
         
             
            Note that this means that there is performance penalty if many empty records exist.
         
     | 
| 
         @@ -175,8 +246,8 @@ if X doesn't satisfy the condition, it returns false instead of 0.</li> 
     | 
|
| 
       175 
246 
     | 
    
         
             
            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>
         
     | 
| 
       176 
247 
     | 
    
         
             
            </ul>
         
     | 
| 
       177 
248 
     | 
    
         
             
            </div>
         
     | 
| 
       178 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       179 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 249 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 250 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       180 
251 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       181 
252 
     | 
    
         
             
            <li>cosmo0920</li>
         
     | 
| 
       182 
253 
     | 
    
         
             
            <li>yoku</li>
         
     | 
| 
         @@ -186,8 +257,8 @@ of <a class="reference internal" href="reference/functions/snippet_html.html"><e 
     | 
|
| 
       186 
257 
     | 
    
         
             
            </div>
         
     | 
| 
       187 
258 
     | 
    
         
             
            <div class="section" id="release-3-1-1-2013-12-29">
         
     | 
| 
       188 
259 
     | 
    
         
             
            <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>
         
     | 
| 
       189 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       190 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 260 
     | 
    
         
            +
            <div class="section" id="id10">
         
     | 
| 
      
 261 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       191 
262 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       192 
263 
     | 
    
         
             
            <li>[deb] Refined Groonga packages for Debian policy. [groonga-dev,01930]
         
     | 
| 
       193 
264 
     | 
    
         
             
            [Suggested by Hideki Yamane]</li>
         
     | 
| 
         @@ -206,16 +277,16 @@ filtering the column value in specific range.</li> 
     | 
|
| 
       206 
277 
     | 
    
         
             
            <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>
         
     | 
| 
       207 
278 
     | 
    
         
             
            </ul>
         
     | 
| 
       208 
279 
     | 
    
         
             
            </div>
         
     | 
| 
       209 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       210 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 280 
     | 
    
         
            +
            <div class="section" id="id11">
         
     | 
| 
      
 281 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       211 
282 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       212 
283 
     | 
    
         
             
            <li>[munin] Fixed the wrong port number which is specified for GQTP.</li>
         
     | 
| 
       213 
284 
     | 
    
         
             
            <li>[geo_in_circle] Fixed a bug that if you specify "LONGITUDExLATITUDE" as
         
     | 
| 
       214 
285 
     | 
    
         
             
            the 3rd argument of <a class="reference internal" href="reference/functions/geo_in_circle.html"><em>geo_in_circle</em></a>, Groonga crashes.</li>
         
     | 
| 
       215 
286 
     | 
    
         
             
            </ul>
         
     | 
| 
       216 
287 
     | 
    
         
             
            </div>
         
     | 
| 
       217 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       218 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 288 
     | 
    
         
            +
            <div class="section" id="id12">
         
     | 
| 
      
 289 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       219 
290 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       220 
291 
     | 
    
         
             
            <li>Hideki Yamane</li>
         
     | 
| 
       221 
292 
     | 
    
         
             
            <li>whombx</li>
         
     | 
| 
         @@ -226,8 +297,8 @@ the 3rd argument of <a class="reference internal" href="reference/functions/geo_ 
     | 
|
| 
       226 
297 
     | 
    
         
             
            </div>
         
     | 
| 
       227 
298 
     | 
    
         
             
            <div class="section" id="release-3-1-0-2013-11-29">
         
     | 
| 
       228 
299 
     | 
    
         
             
            <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>
         
     | 
| 
       229 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       230 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 300 
     | 
    
         
            +
            <div class="section" id="id13">
         
     | 
| 
      
 301 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       231 
302 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       232 
303 
     | 
    
         
             
            <li>[experimental] Supported an option to skip updating for the same value.
         
     | 
| 
       233 
304 
     | 
    
         
             
            It is enabled by setting GRN_JA_SKIP_SAME_VALUE_PUT=yes as environment variable.</li>
         
     | 
| 
         @@ -238,8 +309,8 @@ It shows actual token, so it helps you to investigate token related issue.</li> 
     | 
|
| 
       238 
309 
     | 
    
         
             
            It is aimed to promote bundling Mroonga with MariaDB in the future.</li>
         
     | 
| 
       239 
310 
     | 
    
         
             
            </ul>
         
     | 
| 
       240 
311 
     | 
    
         
             
            </div>
         
     | 
| 
       241 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       242 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 312 
     | 
    
         
            +
            <div class="section" id="id14">
         
     | 
| 
      
 313 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       243 
314 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       244 
315 
     | 
    
         
             
            <li>Fixed a bug that type of "_value" column is treated as Int32.
         
     | 
| 
       245 
316 
     | 
    
         
             
            It causes the case that the value of "_value" column is casted unexpectedly.
         
     | 
| 
         @@ -256,8 +327,8 @@ sequence.</li> 
     | 
|
| 
       256 
327 
     | 
    
         
             
            'lib/groonga/plugins'. [Reported by @yito]</li>
         
     | 
| 
       257 
328 
     | 
    
         
             
            </ul>
         
     | 
| 
       258 
329 
     | 
    
         
             
            </div>
         
     | 
| 
       259 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       260 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 330 
     | 
    
         
            +
            <div class="section" id="id15">
         
     | 
| 
      
 331 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       261 
332 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       262 
333 
     | 
    
         
             
            <li>sho MINAGAWA</li>
         
     | 
| 
       263 
334 
     | 
    
         
             
            <li>Genki Takiuchi</li>
         
     | 
| 
         @@ -268,8 +339,8 @@ sequence.</li> 
     | 
|
| 
       268 
339 
     | 
    
         
             
            </div>
         
     | 
| 
       269 
340 
     | 
    
         
             
            <div class="section" id="release-3-0-9-2013-10-29">
         
     | 
| 
       270 
341 
     | 
    
         
             
            <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>
         
     | 
| 
       271 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       272 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 342 
     | 
    
         
            +
            <div class="section" id="id16">
         
     | 
| 
      
 343 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       273 
344 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       274 
345 
     | 
    
         
             
            <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>
         
     | 
| 
       275 
346 
     | 
    
         
             
            <li>[httpd] Added <a class="reference internal" href="reference/executables/groonga-httpd.html#groonga-cache-limit"><em>groonga_cache_limit</em></a> directive.</li>
         
     | 
| 
         @@ -289,8 +360,8 @@ raw text insted of double quoted text. This is incompatible changes.</li> 
     | 
|
| 
       289 
360 
     | 
    
         
             
            <li>Supported Ubuntu 13.10 (Saucy Salamander).</li>
         
     | 
| 
       290 
361 
     | 
    
         
             
            </ul>
         
     | 
| 
       291 
362 
     | 
    
         
             
            </div>
         
     | 
| 
       292 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       293 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 363 
     | 
    
         
            +
            <div class="section" id="id17">
         
     | 
| 
      
 364 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       294 
365 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       295 
366 
     | 
    
         
             
            <li>Fixed a bug that it cause SEGV by arithmetic overflow.
         
     | 
| 
       296 
367 
     | 
    
         
             
            This problem occurs when the size of indexes exceeds
         
     | 
| 
         @@ -311,8 +382,8 @@ isn't inherited. It means that these parameters are just ignored in non location 
     | 
|
| 
       311 
382 
     | 
    
         
             
            It affects the case that assignment of the Time value which indicate over 32bit value.</li>
         
     | 
| 
       312 
383 
     | 
    
         
             
            </ul>
         
     | 
| 
       313 
384 
     | 
    
         
             
            </div>
         
     | 
| 
       314 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       315 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 385 
     | 
    
         
            +
            <div class="section" id="id18">
         
     | 
| 
      
 386 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       316 
387 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       317 
388 
     | 
    
         
             
            <li>Naoya Murakami</li>
         
     | 
| 
       318 
389 
     | 
    
         
             
            <li>wanabe</li>
         
     | 
| 
         @@ -323,8 +394,8 @@ It affects the case that assignment of the Time value which indicate over 32bit 
     | 
|
| 
       323 
394 
     | 
    
         
             
            </div>
         
     | 
| 
       324 
395 
     | 
    
         
             
            <div class="section" id="release-3-0-8-2013-09-29">
         
     | 
| 
       325 
396 
     | 
    
         
             
            <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>
         
     | 
| 
       326 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       327 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 397 
     | 
    
         
            +
            <div class="section" id="id19">
         
     | 
| 
      
 398 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       328 
399 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       329 
400 
     | 
    
         
             
            <li>[admin] Improved error handling of select functionality. This change shows error message
         
     | 
| 
       330 
401 
     | 
    
         
             
            and hides loading dialog. [Patch by orangain]</li>
         
     | 
| 
         @@ -347,14 +418,14 @@ You got an error for the operation.</li> 
     | 
|
| 
       347 
418 
     | 
    
         
             
            <li>[doc] Added note about GQTP and HTTP for server use. [groonga-dev,01810] [Reported by Kazuhiro Isobe]</li>
         
     | 
| 
       348 
419 
     | 
    
         
             
            </ul>
         
     | 
| 
       349 
420 
     | 
    
         
             
            </div>
         
     | 
| 
       350 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       351 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 421 
     | 
    
         
            +
            <div class="section" id="id20">
         
     | 
| 
      
 422 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       352 
423 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       353 
424 
     | 
    
         
             
            <li>[admin] Fixed a bug that add value button of COLUMN_VECTOR does not work.</li>
         
     | 
| 
       354 
425 
     | 
    
         
             
            </ul>
         
     | 
| 
       355 
426 
     | 
    
         
             
            </div>
         
     | 
| 
       356 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       357 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 427 
     | 
    
         
            +
            <div class="section" id="id21">
         
     | 
| 
      
 428 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       358 
429 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       359 
430 
     | 
    
         
             
            <li>orangain</li>
         
     | 
| 
       360 
431 
     | 
    
         
             
            <li>Naoya Murakami</li>
         
     | 
| 
         @@ -364,8 +435,8 @@ You got an error for the operation.</li> 
     | 
|
| 
       364 
435 
     | 
    
         
             
            </div>
         
     | 
| 
       365 
436 
     | 
    
         
             
            <div class="section" id="release-3-0-7-2013-08-29">
         
     | 
| 
       366 
437 
     | 
    
         
             
            <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>
         
     | 
| 
       367 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       368 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 438 
     | 
    
         
            +
            <div class="section" id="id22">
         
     | 
| 
      
 439 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       369 
440 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       370 
441 
     | 
    
         
             
            <li>[doc] Added API documentation. [groonga-dev,01593]
         
     | 
| 
       371 
442 
     | 
    
         
             
            [GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]
         
     | 
| 
         @@ -384,8 +455,8 @@ error instead of a warning. [groonga-dev,01571] [Suggested by Naoya Murakami]</l 
     | 
|
| 
       384 
455 
     | 
    
         
             
            <li>[httpd] Supported customizing cache limit as <tt class="docutils literal"><span class="pre">groonga_cache_limit</span></tt> directive.</li>
         
     | 
| 
       385 
456 
     | 
    
         
             
            </ul>
         
     | 
| 
       386 
457 
     | 
    
         
             
            </div>
         
     | 
| 
       387 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       388 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 458 
     | 
    
         
            +
            <div class="section" id="id23">
         
     | 
| 
      
 459 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       389 
460 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       390 
461 
     | 
    
         
             
            <li>Fixed a bug that error in expression may cause stack overflow.
         
     | 
| 
       391 
462 
     | 
    
         
             
            This change avoids that groonga crashes suddenly as a result of error accumlation.</li>
         
     | 
| 
         @@ -413,8 +484,8 @@ The <tt class="docutils literal"><span class="pre">select</span> <span class="pr 
     | 
|
| 
       413 
484 
     | 
    
         
             
            [Reported by YOSHIDA Mitsuo]</li>
         
     | 
| 
       414 
485 
     | 
    
         
             
            </ul>
         
     | 
| 
       415 
486 
     | 
    
         
             
            </div>
         
     | 
| 
       416 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       417 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 487 
     | 
    
         
            +
            <div class="section" id="id24">
         
     | 
| 
      
 488 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       418 
489 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       419 
490 
     | 
    
         
             
            <li>whombx</li>
         
     | 
| 
       420 
491 
     | 
    
         
             
            <li>@naoina</li>
         
     | 
| 
         @@ -427,8 +498,8 @@ The <tt class="docutils literal"><span class="pre">select</span> <span class="pr 
     | 
|
| 
       427 
498 
     | 
    
         
             
            </div>
         
     | 
| 
       428 
499 
     | 
    
         
             
            <div class="section" id="release-3-0-6-2013-07-29">
         
     | 
| 
       429 
500 
     | 
    
         
             
            <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>
         
     | 
| 
       430 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       431 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 501 
     | 
    
         
            +
            <div class="section" id="id25">
         
     | 
| 
      
 502 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       432 
503 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       433 
504 
     | 
    
         
             
            <li>[doc] Added documentation about parameter of <a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a>
         
     | 
| 
       434 
505 
     | 
    
         
             
            function.</li>
         
     | 
| 
         @@ -442,15 +513,15 @@ function.</li> 
     | 
|
| 
       442 
513 
     | 
    
         
             
            <li>[httpd] Updated bundled nginx version to 1.4.2.</li>
         
     | 
| 
       443 
514 
     | 
    
         
             
            </ul>
         
     | 
| 
       444 
515 
     | 
    
         
             
            </div>
         
     | 
| 
       445 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       446 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 516 
     | 
    
         
            +
            <div class="section" id="id26">
         
     | 
| 
      
 517 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       447 
518 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       448 
519 
     | 
    
         
             
            <li>Fixed a crash bug when specific internal function (<tt class="docutils literal"><span class="pre">grn_obj_path()</span></tt>) is called
         
     | 
| 
       449 
520 
     | 
    
         
             
            for built-in proc function such as <tt class="docutils literal"><span class="pre">select</span></tt>. [Reported by Genki Takiuchi]</li>
         
     | 
| 
       450 
521 
     | 
    
         
             
            </ul>
         
     | 
| 
       451 
522 
     | 
    
         
             
            </div>
         
     | 
| 
       452 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       453 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 523 
     | 
    
         
            +
            <div class="section" id="id27">
         
     | 
| 
      
 524 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       454 
525 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       455 
526 
     | 
    
         
             
            <li>Naoya Inada</li>
         
     | 
| 
       456 
527 
     | 
    
         
             
            <li>OBATA Akio</li>
         
     | 
| 
         @@ -461,8 +532,8 @@ for built-in proc function such as <tt class="docutils literal"><span class="pre 
     | 
|
| 
       461 
532 
     | 
    
         
             
            </div>
         
     | 
| 
       462 
533 
     | 
    
         
             
            <div class="section" id="release-3-0-5-2013-06-29">
         
     | 
| 
       463 
534 
     | 
    
         
             
            <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>
         
     | 
| 
       464 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       465 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 535 
     | 
    
         
            +
            <div class="section" id="id28">
         
     | 
| 
      
 536 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       466 
537 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       467 
538 
     | 
    
         
             
            <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>
         
     | 
| 
       468 
539 
     | 
    
         
             
            <li>Added subrecord information to table inspection.</li>
         
     | 
| 
         @@ -473,8 +544,8 @@ when starting groonga server. [Reported by Kosuke Asami]</li> 
     | 
|
| 
       473 
544 
     | 
    
         
             
            <li>[experimental] Added <a class="reference internal" href="reference/functions/html_untag.html"><em>html_untag</em></a> function.</li>
         
     | 
| 
       474 
545 
     | 
    
         
             
            </ul>
         
     | 
| 
       475 
546 
     | 
    
         
             
            </div>
         
     | 
| 
       476 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       477 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 547 
     | 
    
         
            +
            <div class="section" id="id29">
         
     | 
| 
      
 548 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       478 
549 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       479 
550 
     | 
    
         
             
            <li>Fixed a crash bug of mroonga which is caused by missing lock for table creation.
         
     | 
| 
       480 
551 
     | 
    
         
             
            [Reported by Y.Kentaro]</li>
         
     | 
| 
         @@ -492,8 +563,8 @@ This bug affects the case if you assign calculated value to 
     | 
|
| 
       492 
563 
     | 
    
         
             
            <tt class="docutils literal"><span class="pre">_score</span></tt> pseudo column for example.</li>
         
     | 
| 
       493 
564 
     | 
    
         
             
            </ul>
         
     | 
| 
       494 
565 
     | 
    
         
             
            </div>
         
     | 
| 
       495 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       496 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 566 
     | 
    
         
            +
            <div class="section" id="id30">
         
     | 
| 
      
 567 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       497 
568 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       498 
569 
     | 
    
         
             
            <li>Y.Kentaro</li>
         
     | 
| 
       499 
570 
     | 
    
         
             
            <li>Kosuke Asami</li>
         
     | 
| 
         @@ -503,8 +574,8 @@ This bug affects the case if you assign calculated value to 
     | 
|
| 
       503 
574 
     | 
    
         
             
            </div>
         
     | 
| 
       504 
575 
     | 
    
         
             
            <div class="section" id="release-3-0-4-2013-05-29">
         
     | 
| 
       505 
576 
     | 
    
         
             
            <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>
         
     | 
| 
       506 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       507 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 577 
     | 
    
         
            +
            <div class="section" id="id31">
         
     | 
| 
      
 578 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       508 
579 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       509 
580 
     | 
    
         
             
            <li>[tokenizer] Improved to show log message when normalized string is not given.</li>
         
     | 
| 
       510 
581 
     | 
    
         
             
            <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>
         
     | 
| 
         @@ -527,8 +598,8 @@ It supports to exclude specific tables from monitoring results.</li> 
     | 
|
| 
       527 
598 
     | 
    
         
             
            system plugins.</li>
         
     | 
| 
       528 
599 
     | 
    
         
             
            </ul>
         
     | 
| 
       529 
600 
     | 
    
         
             
            </div>
         
     | 
| 
       530 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       531 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 601 
     | 
    
         
            +
            <div class="section" id="id32">
         
     | 
| 
      
 602 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       532 
603 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       533 
604 
     | 
    
         
             
            <li>[tokenizer] Fixed a memory leak on error.</li>
         
     | 
| 
       534 
605 
     | 
    
         
             
            <li>Fixed a bug that empty string for similar search causes SEGV.
         
     | 
| 
         @@ -543,8 +614,8 @@ expressions are used.</li> 
     | 
|
| 
       543 
614 
     | 
    
         
             
            <li>[deb] Fixed a bug that HTTP/GQTP process is excuted as root user.</li>
         
     | 
| 
       544 
615 
     | 
    
         
             
            </ul>
         
     | 
| 
       545 
616 
     | 
    
         
             
            </div>
         
     | 
| 
       546 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       547 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 617 
     | 
    
         
            +
            <div class="section" id="id33">
         
     | 
| 
      
 618 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       548 
619 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       549 
620 
     | 
    
         
             
            <li>@ceekz</li>
         
     | 
| 
       550 
621 
     | 
    
         
             
            <li>Nakai Kanako</li>
         
     | 
| 
         @@ -557,8 +628,8 @@ expressions are used.</li> 
     | 
|
| 
       557 
628 
     | 
    
         
             
            </div>
         
     | 
| 
       558 
629 
     | 
    
         
             
            <div class="section" id="release-3-0-3-2013-04-29">
         
     | 
| 
       559 
630 
     | 
    
         
             
            <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>
         
     | 
| 
       560 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       561 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 631 
     | 
    
         
            +
            <div class="section" id="id34">
         
     | 
| 
      
 632 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       562 
633 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       563 
634 
     | 
    
         
             
            <li>[suggest] Supported to learn with the value of customized weight
         
     | 
| 
       564 
635 
     | 
    
         
             
            by using <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> configuration.</li>
         
     | 
| 
         @@ -576,8 +647,8 @@ for building customized groonga without changing spec file.</li> 
     | 
|
| 
       576 
647 
     | 
    
         
             
            </div>
         
     | 
| 
       577 
648 
     | 
    
         
             
            <div class="section" id="release-3-0-2-2013-03-29">
         
     | 
| 
       578 
649 
     | 
    
         
             
            <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>
         
     | 
| 
       579 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       580 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 650 
     | 
    
         
            +
            <div class="section" id="id35">
         
     | 
| 
      
 651 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       581 
652 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       582 
653 
     | 
    
         
             
            <li>Supported two or more indexes for a table key.
         
     | 
| 
       583 
654 
     | 
    
         
             
            This change affects to eliminate potential crash case when loading a new key
         
     | 
| 
         @@ -601,8 +672,8 @@ This change supports the query such as 
     | 
|
| 
       601 
672 
     | 
    
         
             
            <tt class="docutils literal"><span class="pre">--query_expansion</span></tt> is regarded as deprecated.</li>
         
     | 
| 
       602 
673 
     | 
    
         
             
            </ul>
         
     | 
| 
       603 
674 
     | 
    
         
             
            </div>
         
     | 
| 
       604 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       605 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 675 
     | 
    
         
            +
            <div class="section" id="id36">
         
     | 
| 
      
 676 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       606 
677 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       607 
678 
     | 
    
         
             
            <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".
         
     | 
| 
       608 
679 
     | 
    
         
             
            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>.
         
     | 
| 
         @@ -618,8 +689,8 @@ Reference key size is 25 byte or lager.</li> 
     | 
|
| 
       618 
689 
     | 
    
         
             
            This affects the case if GARBAGE does not exist.</li>
         
     | 
| 
       619 
690 
     | 
    
         
             
            </ul>
         
     | 
| 
       620 
691 
     | 
    
         
             
            </div>
         
     | 
| 
       621 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       622 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 692 
     | 
    
         
            +
            <div class="section" id="id37">
         
     | 
| 
      
 693 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id37" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       623 
694 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       624 
695 
     | 
    
         
             
            <li>Hendro Wibowo</li>
         
     | 
| 
       625 
696 
     | 
    
         
             
            <li>hino</li>
         
     | 
| 
         @@ -629,8 +700,8 @@ This affects the case if GARBAGE does not exist.</li> 
     | 
|
| 
       629 
700 
     | 
    
         
             
            </div>
         
     | 
| 
       630 
701 
     | 
    
         
             
            <div class="section" id="release-3-0-1-2013-02-28">
         
     | 
| 
       631 
702 
     | 
    
         
             
            <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>
         
     | 
| 
       632 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       633 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 703 
     | 
    
         
            +
            <div class="section" id="id38">
         
     | 
| 
      
 704 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id38" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       634 
705 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       635 
706 
     | 
    
         
             
            <li>Supported to set Bool to reference column when loading dataset by load command.</li>
         
     | 
| 
       636 
707 
     | 
    
         
             
            <li>Supported AND operation for nested index.
         
     | 
| 
         @@ -647,8 +718,8 @@ based nested index of _key.</li> 
     | 
|
| 
       647 
718 
     | 
    
         
             
            <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>
         
     | 
| 
       648 
719 
     | 
    
         
             
            </ul>
         
     | 
| 
       649 
720 
     | 
    
         
             
            </div>
         
     | 
| 
       650 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       651 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 721 
     | 
    
         
            +
            <div class="section" id="id39">
         
     | 
| 
      
 722 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id39" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       652 
723 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       653 
724 
     | 
    
         
             
            <li>Fixed a bug that <tt class="docutils literal"><span class="pre">grn_index_cursor_next()</span></tt> returns NULL unexpectedly.
         
     | 
| 
       654 
725 
     | 
    
         
             
            It causes that invalid index entry is returned after deleting entries.
         
     | 
| 
         @@ -658,8 +729,8 @@ This bug occurs by wrong the number of found records.</li> 
     | 
|
| 
       658 
729 
     | 
    
         
             
            <li>[httpd] Enabled default owner/group of database setting as groonga/groonga.</li>
         
     | 
| 
       659 
730 
     | 
    
         
             
            </ul>
         
     | 
| 
       660 
731 
     | 
    
         
             
            </div>
         
     | 
| 
       661 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       662 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 732 
     | 
    
         
            +
            <div class="section" id="id40">
         
     | 
| 
      
 733 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id40" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       663 
734 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       664 
735 
     | 
    
         
             
            <li>b senboku</li>
         
     | 
| 
       665 
736 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -670,8 +741,8 @@ This bug occurs by wrong the number of found records.</li> 
     | 
|
| 
       670 
741 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       671 
742 
     | 
    
         
             
            <li>Bump version to 3.0.0!</li>
         
     | 
| 
       672 
743 
     | 
    
         
             
            </ul>
         
     | 
| 
       673 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       674 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 744 
     | 
    
         
            +
            <div class="section" id="id41">
         
     | 
| 
      
 745 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id41" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       675 
746 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       676 
747 
     | 
    
         
             
            <li>[deb] Fixed to install missing not EUC-JP, but UTF-8 encoding dictionary
         
     | 
| 
       677 
748 
     | 
    
         
             
            when <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> package is installed.</li>
         
     | 
| 
         @@ -681,8 +752,8 @@ If you use string literal for int64, this bug does not affects.</li> 
     | 
|
| 
       681 
752 
     | 
    
         
             
            by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]</li>
         
     | 
| 
       682 
753 
     | 
    
         
             
            </ul>
         
     | 
| 
       683 
754 
     | 
    
         
             
            </div>
         
     | 
| 
       684 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       685 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 755 
     | 
    
         
            +
            <div class="section" id="id42">
         
     | 
| 
      
 756 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id42" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       686 
757 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       687 
758 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       688 
759 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -690,8 +761,8 @@ by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]</li> 
     | 
|
| 
       690 
761 
     | 
    
         
             
            </div>
         
     | 
| 
       691 
762 
     | 
    
         
             
            <div class="section" id="release-2-1-2-2013-01-29">
         
     | 
| 
       692 
763 
     | 
    
         
             
            <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>
         
     | 
| 
       693 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       694 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 764 
     | 
    
         
            +
            <div class="section" id="id43">
         
     | 
| 
      
 765 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id43" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       695 
766 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       696 
767 
     | 
    
         
             
            <li>Supported multiple <tt class="docutils literal"><span class="pre">query()</span></tt> in a select command.
         
     | 
| 
       697 
768 
     | 
    
         
             
            For example, you can specify the keyword which has different weight such as
         
     | 
| 
         @@ -717,8 +788,8 @@ in <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li> 
     | 
|
| 
       717 
788 
     | 
    
         
             
            <li>[doc] Added documentation for <a class="reference internal" href="reference/functions/query.html"><em>query</em></a>.</li>
         
     | 
| 
       718 
789 
     | 
    
         
             
            </ul>
         
     | 
| 
       719 
790 
     | 
    
         
             
            </div>
         
     | 
| 
       720 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       721 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 791 
     | 
    
         
            +
            <div class="section" id="id44">
         
     | 
| 
      
 792 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id44" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       722 
793 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       723 
794 
     | 
    
         
             
            <li>Fixed not to report an error even though MeCab tokenizer shared object
         
     | 
| 
       724 
795 
     | 
    
         
             
            isn't found. [groonga-dev,01174] [Reported by wing]</li>
         
     | 
| 
         @@ -728,8 +799,8 @@ isn't found. [groonga-dev,01174] [Reported by wing]</li> 
     | 
|
| 
       728 
799 
     | 
    
         
             
            by select command.</li>
         
     | 
| 
       729 
800 
     | 
    
         
             
            </ul>
         
     | 
| 
       730 
801 
     | 
    
         
             
            </div>
         
     | 
| 
       731 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       732 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 802 
     | 
    
         
            +
            <div class="section" id="id45">
         
     | 
| 
      
 803 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id45" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       733 
804 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       734 
805 
     | 
    
         
             
            <li>wing</li>
         
     | 
| 
       735 
806 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -739,8 +810,8 @@ by select command.</li> 
     | 
|
| 
       739 
810 
     | 
    
         
             
            <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>
         
     | 
| 
       740 
811 
     | 
    
         
             
            <p>This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
         
     | 
| 
       741 
812 
     | 
    
         
             
            instead.</p>
         
     | 
| 
       742 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       743 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 813 
     | 
    
         
            +
            <div class="section" id="id46">
         
     | 
| 
      
 814 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id46" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       744 
815 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       745 
816 
     | 
    
         
             
            <li>Fixed a bug that <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> information in database that is
         
     | 
| 
       746 
817 
     | 
    
         
             
            created by groonga 2.0.8 or ealier is dropped.</li>
         
     | 
| 
         @@ -767,8 +838,8 @@ version of groonga.</p> 
     | 
|
| 
       767 
838 
     | 
    
         
             
            tokenizer. The argument of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> API has changed.
         
     | 
| 
       768 
839 
     | 
    
         
             
            This API change affects developer of tokenizer plugin.</p>
         
     | 
| 
       769 
840 
     | 
    
         
             
            </div>
         
     | 
| 
       770 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       771 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 841 
     | 
    
         
            +
            <div class="section" id="id47">
         
     | 
| 
      
 842 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id47" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       772 
843 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       773 
844 
     | 
    
         
             
            <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>
         
     | 
| 
       774 
845 
     | 
    
         
             
            <li>Supported the expression as <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> arguments.
         
     | 
| 
         @@ -790,8 +861,8 @@ of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span 
     | 
|
| 
       790 
861 
     | 
    
         
             
            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>
         
     | 
| 
       791 
862 
     | 
    
         
             
            </ul>
         
     | 
| 
       792 
863 
     | 
    
         
             
            </div>
         
     | 
| 
       793 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       794 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 864 
     | 
    
         
            +
            <div class="section" id="id48">
         
     | 
| 
      
 865 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id48" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       795 
866 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       796 
867 
     | 
    
         
             
            <li>[windows] Added missing <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> flag to open file correctly.
         
     | 
| 
       797 
868 
     | 
    
         
             
            This change fixes the infinite loop problem about groonga HTTP server.
         
     | 
| 
         @@ -803,8 +874,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop 
     | 
|
| 
       803 
874 
     | 
    
         
             
            <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>
         
     | 
| 
       804 
875 
     | 
    
         
             
            </ul>
         
     | 
| 
       805 
876 
     | 
    
         
             
            </div>
         
     | 
| 
       806 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       807 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 877 
     | 
    
         
            +
            <div class="section" id="id49">
         
     | 
| 
      
 878 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id49" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       808 
879 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       809 
880 
     | 
    
         
             
            <li>Tomoatsu Shimada</li>
         
     | 
| 
       810 
881 
     | 
    
         
             
            <li>Shimomura Tatsuya</li>
         
     | 
| 
         @@ -813,8 +884,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop 
     | 
|
| 
       813 
884 
     | 
    
         
             
            </div>
         
     | 
| 
       814 
885 
     | 
    
         
             
            <div class="section" id="release-2-0-9-2012-11-29">
         
     | 
| 
       815 
886 
     | 
    
         
             
            <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>
         
     | 
| 
       816 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       817 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 887 
     | 
    
         
            +
            <div class="section" id="id50">
         
     | 
| 
      
 888 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id50" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       818 
889 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       819 
890 
     | 
    
         
             
            <li>Supported to calculate the value of distance accross border
         
     | 
| 
       820 
891 
     | 
    
         
             
            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>
         
     | 
| 
         @@ -837,8 +908,8 @@ This change is incompatibility change, but does not affects existing program.</l 
     | 
|
| 
       837 
908 
     | 
    
         
             
            <li>Supported range search by using index.</li>
         
     | 
| 
       838 
909 
     | 
    
         
             
            </ul>
         
     | 
| 
       839 
910 
     | 
    
         
             
            </div>
         
     | 
| 
       840 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       841 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 911 
     | 
    
         
            +
            <div class="section" id="id51">
         
     | 
| 
      
 912 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id51" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       842 
913 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       843 
914 
     | 
    
         
             
            <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
         
     | 
| 
       844 
915 
     | 
    
         
             
            the normal network protocol convention.
         
     | 
| 
         @@ -862,8 +933,8 @@ referenced by <tt class="docutils literal"><span class="pre">select</span></tt> 
     | 
|
| 
       862 
933 
     | 
    
         
             
            This change not to contain such a metadata as search results.</li>
         
     | 
| 
       863 
934 
     | 
    
         
             
            </ul>
         
     | 
| 
       864 
935 
     | 
    
         
             
            </div>
         
     | 
| 
       865 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       866 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 936 
     | 
    
         
            +
            <div class="section" id="id52">
         
     | 
| 
      
 937 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id52" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       867 
938 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       868 
939 
     | 
    
         
             
            <li>Tomoatsu Shimada</li>
         
     | 
| 
       869 
940 
     | 
    
         
             
            <li>Akio Tajima</li>
         
     | 
| 
         @@ -873,8 +944,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       873 
944 
     | 
    
         
             
            </div>
         
     | 
| 
       874 
945 
     | 
    
         
             
            <div class="section" id="release-2-0-8-2012-10-29">
         
     | 
| 
       875 
946 
     | 
    
         
             
            <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>
         
     | 
| 
       876 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       877 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 947 
     | 
    
         
            +
            <div class="section" id="id53">
         
     | 
| 
      
 948 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id53" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       878 
949 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       879 
950 
     | 
    
         
             
            <li>[rpm] Improved the description of server-http and httpd packages.
         
     | 
| 
       880 
951 
     | 
    
         
             
            [Suggested by Daiki Ueno]</li>
         
     | 
| 
         @@ -886,8 +957,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       886 
957 
     | 
    
         
             
            [Reported by serihiro]</li>
         
     | 
| 
       887 
958 
     | 
    
         
             
            </ul>
         
     | 
| 
       888 
959 
     | 
    
         
             
            </div>
         
     | 
| 
       889 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       890 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 960 
     | 
    
         
            +
            <div class="section" id="id54">
         
     | 
| 
      
 961 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id54" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       891 
962 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       892 
963 
     | 
    
         
             
            <li>[rpm] Fixed to remove needless "Requires" from spec file.
         
     | 
| 
       893 
964 
     | 
    
         
             
            [Reported by Daiki Ueno]</li>
         
     | 
| 
         @@ -898,8 +969,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       898 
969 
     | 
    
         
             
            <li>[deb] Fixed to bundle missing table plugin.</li>
         
     | 
| 
       899 
970 
     | 
    
         
             
            </ul>
         
     | 
| 
       900 
971 
     | 
    
         
             
            </div>
         
     | 
| 
       901 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       902 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 972 
     | 
    
         
            +
            <div class="section" id="id55">
         
     | 
| 
      
 973 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id55" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       903 
974 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       904 
975 
     | 
    
         
             
            <li>Daiki Ueno</li>
         
     | 
| 
       905 
976 
     | 
    
         
             
            <li>firewood</li>
         
     | 
| 
         @@ -909,8 +980,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       909 
980 
     | 
    
         
             
            </div>
         
     | 
| 
       910 
981 
     | 
    
         
             
            <div class="section" id="release-2-0-7-2012-09-29">
         
     | 
| 
       911 
982 
     | 
    
         
             
            <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>
         
     | 
| 
       912 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       913 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 983 
     | 
    
         
            +
            <div class="section" id="id56">
         
     | 
| 
      
 984 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id56" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       914 
985 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       915 
986 
     | 
    
         
             
            <li>[doc] Added more descriptions about <tt class="docutils literal"><span class="pre">--query_flags</span></tt>.</li>
         
     | 
| 
       916 
987 
     | 
    
         
             
            <li>[doc][httpd] Added sample configuration for gzip compression.</li>
         
     | 
| 
         @@ -926,8 +997,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       926 
997 
     | 
    
         
             
            <li>Added <tt class="docutils literal"><span class="pre">min()</span></tt> function.</li>
         
     | 
| 
       927 
998 
     | 
    
         
             
            </ul>
         
     | 
| 
       928 
999 
     | 
    
         
             
            </div>
         
     | 
| 
       929 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       930 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1000 
     | 
    
         
            +
            <div class="section" id="id57">
         
     | 
| 
      
 1001 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id57" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       931 
1002 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       932 
1003 
     | 
    
         
             
            <li>Fixed to set domain to vector elements to <tt class="docutils literal"><span class="pre">load</span></tt> command. [GitHub#30]</li>
         
     | 
| 
       933 
1004 
     | 
    
         
             
            <li>[httpd] Fixed missing NULL initialization. [Reported by @Kiske]</li>
         
     | 
| 
         @@ -938,8 +1009,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       938 
1009 
     | 
    
         
             
            <li>Fixed a bug that Time -> Float cast breaks value.</li>
         
     | 
| 
       939 
1010 
     | 
    
         
             
            </ul>
         
     | 
| 
       940 
1011 
     | 
    
         
             
            </div>
         
     | 
| 
       941 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       942 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1012 
     | 
    
         
            +
            <div class="section" id="id58">
         
     | 
| 
      
 1013 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id58" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       943 
1014 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       944 
1015 
     | 
    
         
             
            <li>@Kiske</li>
         
     | 
| 
       945 
1016 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -947,8 +1018,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       947 
1018 
     | 
    
         
             
            </div>
         
     | 
| 
       948 
1019 
     | 
    
         
             
            <div class="section" id="release-2-0-6-2012-08-29">
         
     | 
| 
       949 
1020 
     | 
    
         
             
            <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>
         
     | 
| 
       950 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       951 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1021 
     | 
    
         
            +
            <div class="section" id="id59">
         
     | 
| 
      
 1022 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id59" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       952 
1023 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       953 
1024 
     | 
    
         
             
            <li>[deb][rpm] Added <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> meta package. [#1451]</li>
         
     | 
| 
       954 
1025 
     | 
    
         
             
            <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>
         
     | 
| 
         @@ -969,8 +1040,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       969 
1040 
     | 
    
         
             
            <li>Supported '-WORD' in <tt class="docutils literal"><span class="pre">--query</span></tt> of the select command.</li>
         
     | 
| 
       970 
1041 
     | 
    
         
             
            </ul>
         
     | 
| 
       971 
1042 
     | 
    
         
             
            </div>
         
     | 
| 
       972 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       973 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1043 
     | 
    
         
            +
            <div class="section" id="id60">
         
     | 
| 
      
 1044 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id60" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       974 
1045 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       975 
1046 
     | 
    
         
             
            <li>[doc] Fixed the execution examples. [#1428]
         
     | 
| 
       976 
1047 
     | 
    
         
             
            [Reported by IWAI, Masaharu]</li>
         
     | 
| 
         @@ -985,8 +1056,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt 
     | 
|
| 
       985 
1056 
     | 
    
         
             
            [Reported by @yito]</li>
         
     | 
| 
       986 
1057 
     | 
    
         
             
            </ul>
         
     | 
| 
       987 
1058 
     | 
    
         
             
            </div>
         
     | 
| 
       988 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       989 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1059 
     | 
    
         
            +
            <div class="section" id="id61">
         
     | 
| 
      
 1060 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id61" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       990 
1061 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       991 
1062 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       992 
1063 
     | 
    
         
             
            <li>@yito</li>
         
     | 
| 
         @@ -995,8 +1066,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt 
     | 
|
| 
       995 
1066 
     | 
    
         
             
            </div>
         
     | 
| 
       996 
1067 
     | 
    
         
             
            <div class="section" id="release-2-0-5-2012-07-29">
         
     | 
| 
       997 
1068 
     | 
    
         
             
            <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>
         
     | 
| 
       998 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       999 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1069 
     | 
    
         
            +
            <div class="section" id="id62">
         
     | 
| 
      
 1070 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id62" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1000 
1071 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1001 
1072 
     | 
    
         
             
            <li>Supported calculating the value of distance with "rect" or "rectangle"
         
     | 
| 
       1002 
1073 
     | 
    
         
             
            argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
         
     | 
| 
         @@ -1021,8 +1092,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li> 
     | 
|
| 
       1021 
1092 
     | 
    
         
             
            <li>Supported to open locked database. [GitHub#21]</li>
         
     | 
| 
       1022 
1093 
     | 
    
         
             
            </ul>
         
     | 
| 
       1023 
1094 
     | 
    
         
             
            </div>
         
     | 
| 
       1024 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1025 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1095 
     | 
    
         
            +
            <div class="section" id="id63">
         
     | 
| 
      
 1096 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id63" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1026 
1097 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1027 
1098 
     | 
    
         
             
            <li>Fixed a build problem about groonga-httpd on Mac OS X.
         
     | 
| 
       1028 
1099 
     | 
    
         
             
            [Reported by SHIMADA Koji]</li>
         
     | 
| 
         @@ -1038,8 +1109,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li> 
     | 
|
| 
       1038 
1109 
     | 
    
         
             
            [#1429] [Reported by IWAI, Masaharu]</li>
         
     | 
| 
       1039 
1110 
     | 
    
         
             
            </ul>
         
     | 
| 
       1040 
1111 
     | 
    
         
             
            </div>
         
     | 
| 
       1041 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1042 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1112 
     | 
    
         
            +
            <div class="section" id="id64">
         
     | 
| 
      
 1113 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id64" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1043 
1114 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1044 
1115 
     | 
    
         
             
            <li>SHIMADA Koji</li>
         
     | 
| 
       1045 
1116 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
         @@ -1048,8 +1119,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li> 
     | 
|
| 
       1048 
1119 
     | 
    
         
             
            </div>
         
     | 
| 
       1049 
1120 
     | 
    
         
             
            <div class="section" id="release-2-0-4-2012-06-29">
         
     | 
| 
       1050 
1121 
     | 
    
         
             
            <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>
         
     | 
| 
       1051 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1052 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1122 
     | 
    
         
            +
            <div class="section" id="id65">
         
     | 
| 
      
 1123 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id65" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1053 
1124 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1054 
1125 
     | 
    
         
             
            <li>Supported only KyTea 0.4.2.</li>
         
     | 
| 
       1055 
1126 
     | 
    
         
             
            <li>Dropped KyTea 0.4.1 or ealier support.</li>
         
     | 
| 
         @@ -1076,8 +1147,8 @@ See <a class="reference internal" href="reference/grn_expr/query_syntax.html#con 
     | 
|
| 
       1076 
1147 
     | 
    
         
             
            [GitHub#18] [Patch by IWAI, Masaharu]</li>
         
     | 
| 
       1077 
1148 
     | 
    
         
             
            </ul>
         
     | 
| 
       1078 
1149 
     | 
    
         
             
            </div>
         
     | 
| 
       1079 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1080 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1150 
     | 
    
         
            +
            <div class="section" id="id66">
         
     | 
| 
      
 1151 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id66" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1081 
1152 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1082 
1153 
     | 
    
         
             
            <li>Fixed a problem that display of command prompt changes to not intended state
         
     | 
| 
       1083 
1154 
     | 
    
         
             
            by using batch mode on Mac OS X.
         
     | 
| 
         @@ -1086,8 +1157,8 @@ by using batch mode on Mac OS X. 
     | 
|
| 
       1086 
1157 
     | 
    
         
             
            <li>Fixed a problem that '=R' is treated as 'OR' in <tt class="docutils literal"><span class="pre">--query</span></tt> syntax. [#1393]</li>
         
     | 
| 
       1087 
1158 
     | 
    
         
             
            </ul>
         
     | 
| 
       1088 
1159 
     | 
    
         
             
            </div>
         
     | 
| 
       1089 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1090 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1160 
     | 
    
         
            +
            <div class="section" id="id67">
         
     | 
| 
      
 1161 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id67" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1091 
1162 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1092 
1163 
     | 
    
         
             
            <li>@soundkitchen</li>
         
     | 
| 
       1093 
1164 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
         @@ -1096,8 +1167,8 @@ by using batch mode on Mac OS X. 
     | 
|
| 
       1096 
1167 
     | 
    
         
             
            </div>
         
     | 
| 
       1097 
1168 
     | 
    
         
             
            <div class="section" id="release-2-0-3-2012-05-29">
         
     | 
| 
       1098 
1169 
     | 
    
         
             
            <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>
         
     | 
| 
       1099 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1100 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1170 
     | 
    
         
            +
            <div class="section" id="id68">
         
     | 
| 
      
 1171 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id68" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1101 
1172 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1102 
1173 
     | 
    
         
             
            <li>[doc] Added about release procedure.</li>
         
     | 
| 
       1103 
1174 
     | 
    
         
             
            <li>Removed restriction that the max number of opened files is 4096.</li>
         
     | 
| 
         @@ -1121,8 +1192,8 @@ groonga-repository to groonga-release to follow RPM package name 
     | 
|
| 
       1121 
1192 
     | 
    
         
             
            convension such as centos-release and fedora-release.</li>
         
     | 
| 
       1122 
1193 
     | 
    
         
             
            </ul>
         
     | 
| 
       1123 
1194 
     | 
    
         
             
            </div>
         
     | 
| 
       1124 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1125 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1195 
     | 
    
         
            +
            <div class="section" id="id69">
         
     | 
| 
      
 1196 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id69" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1126 
1197 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1127 
1198 
     | 
    
         
             
            <li>[doc] Fixed a command to update yum repository.
         
     | 
| 
       1128 
1199 
     | 
    
         
             
            [Suggested by IWAI, Masaharu]</li>
         
     | 
| 
         @@ -1135,8 +1206,8 @@ expression. [#1372]</li> 
     | 
|
| 
       1135 
1206 
     | 
    
         
             
            <li>Fixed a bug that a record key registered via index source isn't normalized.</li>
         
     | 
| 
       1136 
1207 
     | 
    
         
             
            </ul>
         
     | 
| 
       1137 
1208 
     | 
    
         
             
            </div>
         
     | 
| 
       1138 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1139 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1209 
     | 
    
         
            +
            <div class="section" id="id70">
         
     | 
| 
      
 1210 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id70" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1140 
1211 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1141 
1212 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       1142 
1213 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -1159,8 +1230,8 @@ package sign key before updating groogna packages.</p> 
     | 
|
| 
       1159 
1230 
     | 
    
         
             
            </pre></div>
         
     | 
| 
       1160 
1231 
     | 
    
         
             
            </div>
         
     | 
| 
       1161 
1232 
     | 
    
         
             
            </div>
         
     | 
| 
       1162 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1163 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1233 
     | 
    
         
            +
            <div class="section" id="id71">
         
     | 
| 
      
 1234 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id71" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1164 
1235 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1165 
1236 
     | 
    
         
             
            <li>[pkg-config] Removed needless MessagePack dependency.</li>
         
     | 
| 
       1166 
1237 
     | 
    
         
             
            <li>[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]</li>
         
     | 
| 
         @@ -1180,8 +1251,8 @@ is the similar search syntax. [#1342]</li> 
     | 
|
| 
       1180 
1251 
     | 
    
         
             
            package sign key.</li>
         
     | 
| 
       1181 
1252 
     | 
    
         
             
            </ul>
         
     | 
| 
       1182 
1253 
     | 
    
         
             
            </div>
         
     | 
| 
       1183 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1184 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1254 
     | 
    
         
            +
            <div class="section" id="id72">
         
     | 
| 
      
 1255 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id72" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1185 
1256 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1186 
1257 
     | 
    
         
             
            <li>[deb][rpm] Used <tt class="docutils literal"><span class="pre">--bind-address</span></tt> option instead of deprecated
         
     | 
| 
       1187 
1258 
     | 
    
         
             
            <tt class="docutils literal"><span class="pre">--address</span></tt> option.
         
     | 
| 
         @@ -1203,8 +1274,8 @@ inverted index. [#1329]</li> 
     | 
|
| 
       1203 
1274 
     | 
    
         
             
            [#1340] [Reported by Shinya Kawaji]</li>
         
     | 
| 
       1204 
1275 
     | 
    
         
             
            </ul>
         
     | 
| 
       1205 
1276 
     | 
    
         
             
            </div>
         
     | 
| 
       1206 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1207 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1277 
     | 
    
         
            +
            <div class="section" id="id73">
         
     | 
| 
      
 1278 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id73" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1208 
1279 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1209 
1280 
     | 
    
         
             
            <li>IWAI, Masaharu</li>
         
     | 
| 
       1210 
1281 
     | 
    
         
             
            <li>Daiki Ueno</li>
         
     | 
| 
         @@ -1214,8 +1285,8 @@ inverted index. [#1329]</li> 
     | 
|
| 
       1214 
1285 
     | 
    
         
             
            </div>
         
     | 
| 
       1215 
1286 
     | 
    
         
             
            <div class="section" id="release-2-0-1-2012-03-29">
         
     | 
| 
       1216 
1287 
     | 
    
         
             
            <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>
         
     | 
| 
       1217 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1218 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1288 
     | 
    
         
            +
            <div class="section" id="id74">
         
     | 
| 
      
 1289 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id74" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1219 
1290 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1220 
1291 
     | 
    
         
             
            <li>Supported build in other directory.
         
     | 
| 
       1221 
1292 
     | 
    
         
             
            [#1298] [Reported by Kazuhiko]</li>
         
     | 
| 
         @@ -1237,8 +1308,8 @@ check. [#1289]</li> 
     | 
|
| 
       1237 
1308 
     | 
    
         
             
            <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>
         
     | 
| 
       1238 
1309 
     | 
    
         
             
            </ul>
         
     | 
| 
       1239 
1310 
     | 
    
         
             
            </div>
         
     | 
| 
       1240 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1241 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1311 
     | 
    
         
            +
            <div class="section" id="id75">
         
     | 
| 
      
 1312 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id75" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1242 
1313 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1243 
1314 
     | 
    
         
             
            <li>Fixed a bug that uninstall task doesn't uninstall installed Ruby
         
     | 
| 
       1244 
1315 
     | 
    
         
             
            scripts. [#1299] [Reported by Kazuhiko]</li>
         
     | 
| 
         @@ -1249,8 +1320,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1249 
1320 
     | 
    
         
             
            <li>Fixed a bug that latin1 normalization may access unexpected memory.</li>
         
     | 
| 
       1250 
1321 
     | 
    
         
             
            </ul>
         
     | 
| 
       1251 
1322 
     | 
    
         
             
            </div>
         
     | 
| 
       1252 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1253 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1323 
     | 
    
         
            +
            <div class="section" id="id76">
         
     | 
| 
      
 1324 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id76" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1254 
1325 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1255 
1326 
     | 
    
         
             
            <li>Kazuhiko</li>
         
     | 
| 
       1256 
1327 
     | 
    
         
             
            <li>Markus Elfring</li>
         
     | 
| 
         @@ -1259,8 +1330,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1259 
1330 
     | 
    
         
             
            </div>
         
     | 
| 
       1260 
1331 
     | 
    
         
             
            <div class="section" id="release-2-0-0-2012-02-29">
         
     | 
| 
       1261 
1332 
     | 
    
         
             
            <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>
         
     | 
| 
       1262 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1263 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1333 
     | 
    
         
            +
            <div class="section" id="id77">
         
     | 
| 
      
 1334 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id77" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1264 
1335 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1265 
1336 
     | 
    
         
             
            <li>[dat] Added 0 length key check.</li>
         
     | 
| 
       1266 
1337 
     | 
    
         
             
            <li>[windows] Added missing GCC related DLLs. [groonga-dev,00686]
         
     | 
| 
         @@ -1284,8 +1355,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1284 
1355 
     | 
    
         
             
            <li>[windows] Supported MessagePack.</li>
         
     | 
| 
       1285 
1356 
     | 
    
         
             
            </ul>
         
     | 
| 
       1286 
1357 
     | 
    
         
             
            </div>
         
     | 
| 
       1287 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1288 
     | 
    
         
            -
            <h3>Fixes<a class="headerlink" href="# 
     | 
| 
      
 1358 
     | 
    
         
            +
            <div class="section" id="id78">
         
     | 
| 
      
 1359 
     | 
    
         
            +
            <h3>Fixes<a class="headerlink" href="#id78" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1289 
1360 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1290 
1361 
     | 
    
         
             
            <li>[pat] Fixed a bug that the last node can't be found. [#1258]</li>
         
     | 
| 
       1291 
1362 
     | 
    
         
             
            <li>[doc] Fixed links in Japanese page. [Reported by @naoina]</li>
         
     | 
| 
         @@ -1295,8 +1366,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1295 
1366 
     | 
    
         
             
            [Reported by @wareohji]</li>
         
     | 
| 
       1296 
1367 
     | 
    
         
             
            </ul>
         
     | 
| 
       1297 
1368 
     | 
    
         
             
            </div>
         
     | 
| 
       1298 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1299 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1369 
     | 
    
         
            +
            <div class="section" id="id79">
         
     | 
| 
      
 1370 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id79" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1300 
1371 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1301 
1372 
     | 
    
         
             
            <li>Suzuki</li>
         
     | 
| 
       1302 
1373 
     | 
    
         
             
            <li>Daiki Ueno</li>
         
     | 
| 
         @@ -1309,8 +1380,8 @@ only used by mroonga. [#1303]</li> 
     | 
|
| 
       1309 
1380 
     | 
    
         
             
            </div>
         
     | 
| 
       1310 
1381 
     | 
    
         
             
            <div class="section" id="release-1-3-0-2012-01-29">
         
     | 
| 
       1311 
1382 
     | 
    
         
             
            <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>
         
     | 
| 
       1312 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1313 
     | 
    
         
            -
            <h3>Improvements<a class="headerlink" href="# 
     | 
| 
      
 1383 
     | 
    
         
            +
            <div class="section" id="id80">
         
     | 
| 
      
 1384 
     | 
    
         
            +
            <h3>Improvements<a class="headerlink" href="#id80" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1314 
1385 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1315 
1386 
     | 
    
         
             
            <li>Supported dynamic DB key table change by
         
     | 
| 
       1316 
1387 
     | 
    
         
             
            GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.</li>
         
     | 
| 
         @@ -1345,8 +1416,8 @@ USE_OFFLINE_INDEXER=yes environment variable.</li> 
     | 
|
| 
       1345 
1416 
     | 
    
         
             
            <li>Added <tt class="docutils literal"><span class="pre">column_rename</span></tt>. [#1234]</li>
         
     | 
| 
       1346 
1417 
     | 
    
         
             
            </ul>
         
     | 
| 
       1347 
1418 
     | 
    
         
             
            </div>
         
     | 
| 
       1348 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1349 
     | 
    
         
            -
            <h3>Thanks<a class="headerlink" href="# 
     | 
| 
      
 1419 
     | 
    
         
            +
            <div class="section" id="id81">
         
     | 
| 
      
 1420 
     | 
    
         
            +
            <h3>Thanks<a class="headerlink" href="#id81" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
       1350 
1421 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1351 
1422 
     | 
    
         
             
            <li>montywi</li>
         
     | 
| 
       1352 
1423 
     | 
    
         
             
            <li>Masaharu IWAI</li>
         
     | 
| 
         @@ -1467,172 +1538,178 @@ USE_OFFLINE_INDEXER=yes environment variable.</li> 
     | 
|
| 
       1467 
1538 
     | 
    
         
             
              <h3><a href="index.html">Table Of Contents</a></h3>
         
     | 
| 
       1468 
1539 
     | 
    
         
             
              <ul>
         
     | 
| 
       1469 
1540 
     | 
    
         
             
            <li><a class="reference internal" href="#">News</a><ul>
         
     | 
| 
       1470 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-4-0- 
     | 
| 
      
 1541 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-2-2014-05-29">Release 4.0.2 - 2014/05/29</a><ul>
         
     | 
| 
       1471 
1542 
     | 
    
         
             
            <li><a class="reference internal" href="#improvements">Improvements</a></li>
         
     | 
| 
       1472 
1543 
     | 
    
         
             
            <li><a class="reference internal" href="#fixes">Fixes</a></li>
         
     | 
| 
       1473 
1544 
     | 
    
         
             
            <li><a class="reference internal" href="#thanks">Thanks</a></li>
         
     | 
| 
       1474 
1545 
     | 
    
         
             
            </ul>
         
     | 
| 
       1475 
1546 
     | 
    
         
             
            </li>
         
     | 
| 
       1476 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-4-0- 
     | 
| 
      
 1547 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-1-2014-03-29">Release 4.0.1 - 2014/03/29</a><ul>
         
     | 
| 
       1477 
1548 
     | 
    
         
             
            <li><a class="reference internal" href="#id1">Improvements</a></li>
         
     | 
| 
       1478 
1549 
     | 
    
         
             
            <li><a class="reference internal" href="#id2">Fixes</a></li>
         
     | 
| 
       1479 
1550 
     | 
    
         
             
            <li><a class="reference internal" href="#id3">Thanks</a></li>
         
     | 
| 
       1480 
1551 
     | 
    
         
             
            </ul>
         
     | 
| 
       1481 
1552 
     | 
    
         
             
            </li>
         
     | 
| 
       1482 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
      
 1553 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-0-2014-02-09">Release 4.0.0 - 2014/02/09</a><ul>
         
     | 
| 
       1483 
1554 
     | 
    
         
             
            <li><a class="reference internal" href="#id4">Improvements</a></li>
         
     | 
| 
       1484 
1555 
     | 
    
         
             
            <li><a class="reference internal" href="#id5">Fixes</a></li>
         
     | 
| 
       1485 
1556 
     | 
    
         
             
            <li><a class="reference internal" href="#id6">Thanks</a></li>
         
     | 
| 
       1486 
1557 
     | 
    
         
             
            </ul>
         
     | 
| 
       1487 
1558 
     | 
    
         
             
            </li>
         
     | 
| 
       1488 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-1- 
     | 
| 
      
 1559 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-2-2014-01-29">Release 3.1.2 - 2014/01/29</a><ul>
         
     | 
| 
       1489 
1560 
     | 
    
         
             
            <li><a class="reference internal" href="#id7">Improvements</a></li>
         
     | 
| 
       1490 
1561 
     | 
    
         
             
            <li><a class="reference internal" href="#id8">Fixes</a></li>
         
     | 
| 
       1491 
1562 
     | 
    
         
             
            <li><a class="reference internal" href="#id9">Thanks</a></li>
         
     | 
| 
       1492 
1563 
     | 
    
         
             
            </ul>
         
     | 
| 
       1493 
1564 
     | 
    
         
             
            </li>
         
     | 
| 
       1494 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-1- 
     | 
| 
      
 1565 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-1-2013-12-29">Release 3.1.1 - 2013/12/29</a><ul>
         
     | 
| 
       1495 
1566 
     | 
    
         
             
            <li><a class="reference internal" href="#id10">Improvements</a></li>
         
     | 
| 
       1496 
1567 
     | 
    
         
             
            <li><a class="reference internal" href="#id11">Fixes</a></li>
         
     | 
| 
       1497 
1568 
     | 
    
         
             
            <li><a class="reference internal" href="#id12">Thanks</a></li>
         
     | 
| 
       1498 
1569 
     | 
    
         
             
            </ul>
         
     | 
| 
       1499 
1570 
     | 
    
         
             
            </li>
         
     | 
| 
       1500 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1571 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-0-2013-11-29">Release 3.1.0 - 2013/11/29</a><ul>
         
     | 
| 
       1501 
1572 
     | 
    
         
             
            <li><a class="reference internal" href="#id13">Improvements</a></li>
         
     | 
| 
       1502 
1573 
     | 
    
         
             
            <li><a class="reference internal" href="#id14">Fixes</a></li>
         
     | 
| 
       1503 
1574 
     | 
    
         
             
            <li><a class="reference internal" href="#id15">Thanks</a></li>
         
     | 
| 
       1504 
1575 
     | 
    
         
             
            </ul>
         
     | 
| 
       1505 
1576 
     | 
    
         
             
            </li>
         
     | 
| 
       1506 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1577 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-9-2013-10-29">Release 3.0.9 - 2013/10/29</a><ul>
         
     | 
| 
       1507 
1578 
     | 
    
         
             
            <li><a class="reference internal" href="#id16">Improvements</a></li>
         
     | 
| 
       1508 
1579 
     | 
    
         
             
            <li><a class="reference internal" href="#id17">Fixes</a></li>
         
     | 
| 
       1509 
1580 
     | 
    
         
             
            <li><a class="reference internal" href="#id18">Thanks</a></li>
         
     | 
| 
       1510 
1581 
     | 
    
         
             
            </ul>
         
     | 
| 
       1511 
1582 
     | 
    
         
             
            </li>
         
     | 
| 
       1512 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1583 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-8-2013-09-29">Release 3.0.8 - 2013/09/29</a><ul>
         
     | 
| 
       1513 
1584 
     | 
    
         
             
            <li><a class="reference internal" href="#id19">Improvements</a></li>
         
     | 
| 
       1514 
1585 
     | 
    
         
             
            <li><a class="reference internal" href="#id20">Fixes</a></li>
         
     | 
| 
       1515 
1586 
     | 
    
         
             
            <li><a class="reference internal" href="#id21">Thanks</a></li>
         
     | 
| 
       1516 
1587 
     | 
    
         
             
            </ul>
         
     | 
| 
       1517 
1588 
     | 
    
         
             
            </li>
         
     | 
| 
       1518 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1589 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-7-2013-08-29">Release 3.0.7 - 2013/08/29</a><ul>
         
     | 
| 
       1519 
1590 
     | 
    
         
             
            <li><a class="reference internal" href="#id22">Improvements</a></li>
         
     | 
| 
       1520 
1591 
     | 
    
         
             
            <li><a class="reference internal" href="#id23">Fixes</a></li>
         
     | 
| 
       1521 
1592 
     | 
    
         
             
            <li><a class="reference internal" href="#id24">Thanks</a></li>
         
     | 
| 
       1522 
1593 
     | 
    
         
             
            </ul>
         
     | 
| 
       1523 
1594 
     | 
    
         
             
            </li>
         
     | 
| 
       1524 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1595 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-6-2013-07-29">Release 3.0.6 - 2013/07/29</a><ul>
         
     | 
| 
       1525 
1596 
     | 
    
         
             
            <li><a class="reference internal" href="#id25">Improvements</a></li>
         
     | 
| 
       1526 
1597 
     | 
    
         
             
            <li><a class="reference internal" href="#id26">Fixes</a></li>
         
     | 
| 
       1527 
1598 
     | 
    
         
             
            <li><a class="reference internal" href="#id27">Thanks</a></li>
         
     | 
| 
       1528 
1599 
     | 
    
         
             
            </ul>
         
     | 
| 
       1529 
1600 
     | 
    
         
             
            </li>
         
     | 
| 
       1530 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1601 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-5-2013-06-29">Release 3.0.5 - 2013/06/29</a><ul>
         
     | 
| 
       1531 
1602 
     | 
    
         
             
            <li><a class="reference internal" href="#id28">Improvements</a></li>
         
     | 
| 
       1532 
1603 
     | 
    
         
             
            <li><a class="reference internal" href="#id29">Fixes</a></li>
         
     | 
| 
       1533 
1604 
     | 
    
         
             
            <li><a class="reference internal" href="#id30">Thanks</a></li>
         
     | 
| 
       1534 
1605 
     | 
    
         
             
            </ul>
         
     | 
| 
       1535 
1606 
     | 
    
         
             
            </li>
         
     | 
| 
       1536 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1607 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-4-2013-05-29">Release 3.0.4 - 2013/05/29</a><ul>
         
     | 
| 
       1537 
1608 
     | 
    
         
             
            <li><a class="reference internal" href="#id31">Improvements</a></li>
         
     | 
| 
      
 1609 
     | 
    
         
            +
            <li><a class="reference internal" href="#id32">Fixes</a></li>
         
     | 
| 
      
 1610 
     | 
    
         
            +
            <li><a class="reference internal" href="#id33">Thanks</a></li>
         
     | 
| 
       1538 
1611 
     | 
    
         
             
            </ul>
         
     | 
| 
       1539 
1612 
     | 
    
         
             
            </li>
         
     | 
| 
       1540 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
       1541 
     | 
    
         
            -
            <li><a class="reference internal" href="# 
     | 
| 
       1542 
     | 
    
         
            -
            <li><a class="reference internal" href="#id33">Fixes</a></li>
         
     | 
| 
       1543 
     | 
    
         
            -
            <li><a class="reference internal" href="#id34">Thanks</a></li>
         
     | 
| 
      
 1613 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-3-2013-04-29">Release 3.0.3 - 2013/04/29</a><ul>
         
     | 
| 
      
 1614 
     | 
    
         
            +
            <li><a class="reference internal" href="#id34">Improvements</a></li>
         
     | 
| 
       1544 
1615 
     | 
    
         
             
            </ul>
         
     | 
| 
       1545 
1616 
     | 
    
         
             
            </li>
         
     | 
| 
       1546 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1617 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-2-2013-03-29">Release 3.0.2 - 2013/03/29</a><ul>
         
     | 
| 
       1547 
1618 
     | 
    
         
             
            <li><a class="reference internal" href="#id35">Improvements</a></li>
         
     | 
| 
       1548 
1619 
     | 
    
         
             
            <li><a class="reference internal" href="#id36">Fixes</a></li>
         
     | 
| 
       1549 
1620 
     | 
    
         
             
            <li><a class="reference internal" href="#id37">Thanks</a></li>
         
     | 
| 
       1550 
1621 
     | 
    
         
             
            </ul>
         
     | 
| 
       1551 
1622 
     | 
    
         
             
            </li>
         
     | 
| 
       1552 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
       1553 
     | 
    
         
            -
            <li><a class="reference internal" href="#id38"> 
     | 
| 
       1554 
     | 
    
         
            -
            <li><a class="reference internal" href="#id39"> 
     | 
| 
      
 1623 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-1-2013-02-28">Release 3.0.1 - 2013/02/28</a><ul>
         
     | 
| 
      
 1624 
     | 
    
         
            +
            <li><a class="reference internal" href="#id38">Improvements</a></li>
         
     | 
| 
      
 1625 
     | 
    
         
            +
            <li><a class="reference internal" href="#id39">Fixes</a></li>
         
     | 
| 
      
 1626 
     | 
    
         
            +
            <li><a class="reference internal" href="#id40">Thanks</a></li>
         
     | 
| 
       1555 
1627 
     | 
    
         
             
            </ul>
         
     | 
| 
       1556 
1628 
     | 
    
         
             
            </li>
         
     | 
| 
       1557 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
       1558 
     | 
    
         
            -
            <li><a class="reference internal" href="#id40">Improvements</a></li>
         
     | 
| 
      
 1629 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-0-2013-02-09">Release 3.0.0 - 2013/02/09</a><ul>
         
     | 
| 
       1559 
1630 
     | 
    
         
             
            <li><a class="reference internal" href="#id41">Fixes</a></li>
         
     | 
| 
       1560 
1631 
     | 
    
         
             
            <li><a class="reference internal" href="#id42">Thanks</a></li>
         
     | 
| 
       1561 
1632 
     | 
    
         
             
            </ul>
         
     | 
| 
       1562 
1633 
     | 
    
         
             
            </li>
         
     | 
| 
       1563 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-1- 
     | 
| 
       1564 
     | 
    
         
            -
            <li><a class="reference internal" href="#id43"> 
     | 
| 
      
 1634 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-2-2013-01-29">Release 2.1.2 - 2013/01/29</a><ul>
         
     | 
| 
      
 1635 
     | 
    
         
            +
            <li><a class="reference internal" href="#id43">Improvements</a></li>
         
     | 
| 
      
 1636 
     | 
    
         
            +
            <li><a class="reference internal" href="#id44">Fixes</a></li>
         
     | 
| 
      
 1637 
     | 
    
         
            +
            <li><a class="reference internal" href="#id45">Thanks</a></li>
         
     | 
| 
       1565 
1638 
     | 
    
         
             
            </ul>
         
     | 
| 
       1566 
1639 
     | 
    
         
             
            </li>
         
     | 
| 
       1567 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-1- 
     | 
| 
       1568 
     | 
    
         
            -
            <li><a class="reference internal" href="# 
     | 
| 
       1569 
     | 
    
         
            -
            <li><a class="reference internal" href="#id45">Fixes</a></li>
         
     | 
| 
       1570 
     | 
    
         
            -
            <li><a class="reference internal" href="#id46">Thanks</a></li>
         
     | 
| 
      
 1640 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-1-2012-12-29">Release 2.1.1 - 2012/12/29</a><ul>
         
     | 
| 
      
 1641 
     | 
    
         
            +
            <li><a class="reference internal" href="#id46">Fixes</a></li>
         
     | 
| 
       1571 
1642 
     | 
    
         
             
            </ul>
         
     | 
| 
       1572 
1643 
     | 
    
         
             
            </li>
         
     | 
| 
       1573 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1644 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-0-2012-12-29">Release 2.1.0 - 2012/12/29</a><ul>
         
     | 
| 
       1574 
1645 
     | 
    
         
             
            <li><a class="reference internal" href="#id47">Improvements</a></li>
         
     | 
| 
       1575 
1646 
     | 
    
         
             
            <li><a class="reference internal" href="#id48">Fixes</a></li>
         
     | 
| 
       1576 
1647 
     | 
    
         
             
            <li><a class="reference internal" href="#id49">Thanks</a></li>
         
     | 
| 
       1577 
1648 
     | 
    
         
             
            </ul>
         
     | 
| 
       1578 
1649 
     | 
    
         
             
            </li>
         
     | 
| 
       1579 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1650 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-9-2012-11-29">Release 2.0.9 - 2012/11/29</a><ul>
         
     | 
| 
       1580 
1651 
     | 
    
         
             
            <li><a class="reference internal" href="#id50">Improvements</a></li>
         
     | 
| 
       1581 
1652 
     | 
    
         
             
            <li><a class="reference internal" href="#id51">Fixes</a></li>
         
     | 
| 
       1582 
1653 
     | 
    
         
             
            <li><a class="reference internal" href="#id52">Thanks</a></li>
         
     | 
| 
       1583 
1654 
     | 
    
         
             
            </ul>
         
     | 
| 
       1584 
1655 
     | 
    
         
             
            </li>
         
     | 
| 
       1585 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1656 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-8-2012-10-29">Release 2.0.8 - 2012/10/29</a><ul>
         
     | 
| 
       1586 
1657 
     | 
    
         
             
            <li><a class="reference internal" href="#id53">Improvements</a></li>
         
     | 
| 
       1587 
1658 
     | 
    
         
             
            <li><a class="reference internal" href="#id54">Fixes</a></li>
         
     | 
| 
       1588 
1659 
     | 
    
         
             
            <li><a class="reference internal" href="#id55">Thanks</a></li>
         
     | 
| 
       1589 
1660 
     | 
    
         
             
            </ul>
         
     | 
| 
       1590 
1661 
     | 
    
         
             
            </li>
         
     | 
| 
       1591 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1662 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-7-2012-09-29">Release 2.0.7 - 2012/09/29</a><ul>
         
     | 
| 
       1592 
1663 
     | 
    
         
             
            <li><a class="reference internal" href="#id56">Improvements</a></li>
         
     | 
| 
       1593 
1664 
     | 
    
         
             
            <li><a class="reference internal" href="#id57">Fixes</a></li>
         
     | 
| 
       1594 
1665 
     | 
    
         
             
            <li><a class="reference internal" href="#id58">Thanks</a></li>
         
     | 
| 
       1595 
1666 
     | 
    
         
             
            </ul>
         
     | 
| 
       1596 
1667 
     | 
    
         
             
            </li>
         
     | 
| 
       1597 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1668 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-6-2012-08-29">Release 2.0.6 - 2012/08/29</a><ul>
         
     | 
| 
       1598 
1669 
     | 
    
         
             
            <li><a class="reference internal" href="#id59">Improvements</a></li>
         
     | 
| 
       1599 
1670 
     | 
    
         
             
            <li><a class="reference internal" href="#id60">Fixes</a></li>
         
     | 
| 
       1600 
1671 
     | 
    
         
             
            <li><a class="reference internal" href="#id61">Thanks</a></li>
         
     | 
| 
       1601 
1672 
     | 
    
         
             
            </ul>
         
     | 
| 
       1602 
1673 
     | 
    
         
             
            </li>
         
     | 
| 
       1603 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1674 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-5-2012-07-29">Release 2.0.5 - 2012/07/29</a><ul>
         
     | 
| 
       1604 
1675 
     | 
    
         
             
            <li><a class="reference internal" href="#id62">Improvements</a></li>
         
     | 
| 
       1605 
1676 
     | 
    
         
             
            <li><a class="reference internal" href="#id63">Fixes</a></li>
         
     | 
| 
       1606 
1677 
     | 
    
         
             
            <li><a class="reference internal" href="#id64">Thanks</a></li>
         
     | 
| 
       1607 
1678 
     | 
    
         
             
            </ul>
         
     | 
| 
       1608 
1679 
     | 
    
         
             
            </li>
         
     | 
| 
       1609 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1680 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-4-2012-06-29">Release 2.0.4 - 2012/06/29</a><ul>
         
     | 
| 
       1610 
1681 
     | 
    
         
             
            <li><a class="reference internal" href="#id65">Improvements</a></li>
         
     | 
| 
       1611 
1682 
     | 
    
         
             
            <li><a class="reference internal" href="#id66">Fixes</a></li>
         
     | 
| 
       1612 
1683 
     | 
    
         
             
            <li><a class="reference internal" href="#id67">Thanks</a></li>
         
     | 
| 
       1613 
1684 
     | 
    
         
             
            </ul>
         
     | 
| 
       1614 
1685 
     | 
    
         
             
            </li>
         
     | 
| 
       1615 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1686 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-3-2012-05-29">Release 2.0.3 - 2012/05/29</a><ul>
         
     | 
| 
       1616 
1687 
     | 
    
         
             
            <li><a class="reference internal" href="#id68">Improvements</a></li>
         
     | 
| 
       1617 
1688 
     | 
    
         
             
            <li><a class="reference internal" href="#id69">Fixes</a></li>
         
     | 
| 
       1618 
1689 
     | 
    
         
             
            <li><a class="reference internal" href="#id70">Thanks</a></li>
         
     | 
| 
       1619 
1690 
     | 
    
         
             
            </ul>
         
     | 
| 
       1620 
1691 
     | 
    
         
             
            </li>
         
     | 
| 
       1621 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1692 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-2-2012-04-29">Release 2.0.2 - 2012/04/29</a><ul>
         
     | 
| 
       1622 
1693 
     | 
    
         
             
            <li><a class="reference internal" href="#id71">Improvements</a></li>
         
     | 
| 
       1623 
1694 
     | 
    
         
             
            <li><a class="reference internal" href="#id72">Fixes</a></li>
         
     | 
| 
       1624 
1695 
     | 
    
         
             
            <li><a class="reference internal" href="#id73">Thanks</a></li>
         
     | 
| 
       1625 
1696 
     | 
    
         
             
            </ul>
         
     | 
| 
       1626 
1697 
     | 
    
         
             
            </li>
         
     | 
| 
       1627 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1698 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-1-2012-03-29">Release 2.0.1 - 2012/03/29</a><ul>
         
     | 
| 
       1628 
1699 
     | 
    
         
             
            <li><a class="reference internal" href="#id74">Improvements</a></li>
         
     | 
| 
       1629 
1700 
     | 
    
         
             
            <li><a class="reference internal" href="#id75">Fixes</a></li>
         
     | 
| 
       1630 
1701 
     | 
    
         
             
            <li><a class="reference internal" href="#id76">Thanks</a></li>
         
     | 
| 
       1631 
1702 
     | 
    
         
             
            </ul>
         
     | 
| 
       1632 
1703 
     | 
    
         
             
            </li>
         
     | 
| 
       1633 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
      
 1704 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-0-2012-02-29">Release 2.0.0 - 2012/02/29</a><ul>
         
     | 
| 
       1634 
1705 
     | 
    
         
             
            <li><a class="reference internal" href="#id77">Improvements</a></li>
         
     | 
| 
       1635 
     | 
    
         
            -
            <li><a class="reference internal" href="#id78"> 
     | 
| 
      
 1706 
     | 
    
         
            +
            <li><a class="reference internal" href="#id78">Fixes</a></li>
         
     | 
| 
      
 1707 
     | 
    
         
            +
            <li><a class="reference internal" href="#id79">Thanks</a></li>
         
     | 
| 
      
 1708 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1709 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1710 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-1-3-0-2012-01-29">Release 1.3.0 - 2012/01/29</a><ul>
         
     | 
| 
      
 1711 
     | 
    
         
            +
            <li><a class="reference internal" href="#id80">Improvements</a></li>
         
     | 
| 
      
 1712 
     | 
    
         
            +
            <li><a class="reference internal" href="#id81">Thanks</a></li>
         
     | 
| 
       1636 
1713 
     | 
    
         
             
            </ul>
         
     | 
| 
       1637 
1714 
     | 
    
         
             
            </li>
         
     | 
| 
       1638 
1715 
     | 
    
         
             
            <li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
         
     | 
| 
         @@ -1670,7 +1747,7 @@ USE_OFFLINE_INDEXER=yes environment variable.</li> 
     | 
|
| 
       1670 
1747 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       1671 
1748 
     | 
    
         
             
                      <a href="genindex.html" title="General Index"
         
     | 
| 
       1672 
1749 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       1673 
     | 
    
         
            -
                    <li><a href="index.html">Groonga v4.0.1 documentation</a> »</li> 
         
     | 
| 
      
 1750 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1-127-g9422d50 documentation</a> »</li> 
         
     | 
| 
       1674 
1751 
     | 
    
         
             
                  </ul>
         
     | 
| 
       1675 
1752 
     | 
    
         
             
                </div>
         
     | 
| 
       1676 
1753 
     | 
    
         
             
                <div class="footer" role="contentinfo">
         
     |