rroonga 4.0.0-x86-mingw32 → 4.0.1-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/.yardopts +6 -0
 - data/doc/text/news.textile +26 -0
 - data/ext/groonga/rb-grn-column.c +42 -2
 - data/ext/groonga/rb-grn-index-column.c +57 -159
 - data/ext/groonga/rb-grn-object.c +7 -0
 - data/ext/groonga/rb-grn-table.c +19 -3
 - data/ext/groonga/rb-grn-utils.c +4 -1
 - data/ext/groonga/rb-grn-variable-size-column.c +405 -5
 - data/ext/groonga/rb-grn.h +18 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +46 -22
 - data/lib/groonga/expression-builder.rb +2 -4
 - data/lib/groonga/schema.rb +16 -234
 - data/rroonga-build.rb +3 -3
 - data/rroonga.gemspec +1 -1
 - data/test/test-array.rb +6 -5
 - data/test/test-column.rb +0 -14
 - data/test/test-database.rb +6 -5
 - data/test/test-double-array-trie.rb +6 -5
 - data/test/test-expression.rb +2 -2
 - data/test/test-hash.rb +6 -5
 - data/test/test-index-column.rb +163 -33
 - data/test/test-patricia-trie.rb +6 -5
 - data/test/test-schema-dumper.rb +39 -7
 - data/test/test-table-dumper.rb +46 -1
 - data/test/test-table-select-weight.rb +12 -0
 - data/test/test-variable-size-column.rb +87 -3
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/include/groonga/groonga.h +6 -1
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +41 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +25 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +333 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +37 -17
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +99 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +128 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +11 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/index.html +68 -67
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
 - 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 +247 -200
 - 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 +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +153 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +857 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +8 -9
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +47 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +8 -9
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +193 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +8 -9
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +165 -13
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +25 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +50 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +34 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +46 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +36 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +62 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +140 -140
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +31 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +36 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +18 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +13 -13
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -17
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference.html +69 -68
 - 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 +9 -9
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/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 +9 -9
 - data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/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 +8 -8
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/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/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +41 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +25 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +333 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +37 -17
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +99 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +128 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +11 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/index.html +67 -66
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
 - 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 +262 -200
 - 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 +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +35 -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 +150 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +824 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/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 +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +45 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +174 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +167 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +23 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/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 +60 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +19 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +23 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +19 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +34 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -68
 - 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 +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
 - 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 +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/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 +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
 - data/vendor/local/share/man/ja/man1/groonga.1 +526 -73
 - data/vendor/local/share/man/man1/groonga.1 +552 -80
 - metadata +148 -139
 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>お知らせ — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>お知らせ — Groonga v4.0.1ドキュメント</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    './',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     ' 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '4.0.1',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,7 +26,7 @@ 
     | 
|
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <script type="text/javascript" src="_static/translations.js"></script>
         
     | 
| 
       28 
28 
     | 
    
         
             
                <link rel="shortcut icon" href="_static/favicon.ico"/>
         
     | 
| 
       29 
     | 
    
         
            -
                <link rel="top" title="Groonga  
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v4.0.1ドキュメント" href="index.html" /> 
         
     | 
| 
       30 
30 
     | 
    
         
             
              </head>
         
     | 
| 
       31 
31 
     | 
    
         
             
              <body role="document">
         
     | 
| 
       32 
32 
     | 
    
         
             
            <div class="header">
         
     | 
| 
         @@ -52,7 +52,7 @@ 
     | 
|
| 
       52 
52 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       53 
53 
     | 
    
         
             
                      <a href="genindex.html" title="総合索引"
         
     | 
| 
       54 
54 
     | 
    
         
             
                         accesskey="I">索引</a></li>
         
     | 
| 
       55 
     | 
    
         
            -
                    <li><a href="index.html">Groonga  
     | 
| 
      
 55 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1ドキュメント</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
       57 
57 
     | 
    
         
             
                </div>  
         
     | 
| 
       58 
58 
     | 
    
         | 
| 
         @@ -63,14 +63,70 @@ 
     | 
|
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
              <div class="section" id="news">
         
     | 
| 
       65 
65 
     | 
    
         
             
            <h1>お知らせ<a class="headerlink" href="#news" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <div class="section" id="release-4-0-1-2014-03-29">
         
     | 
| 
      
 67 
     | 
    
         
            +
            <span id="release-4-0-1"></span><h2>4.0.1リリース - 2014/03/29<a class="headerlink" href="#release-4-0-1-2014-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 68 
     | 
    
         
            +
            <div class="section" id="improvements">
         
     | 
| 
      
 69 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 71 
     | 
    
         
            +
            <li><p class="first">[doc] 返り値のヘッダ詳細 (<a class="reference internal" href="reference/command/output_format.html"><em>出力形式</em></a>) についてのリンクを追加しました。</p>
         
     | 
| 
      
 72 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 73 
     | 
    
         
            +
            <li><p class="first">JSONロード時のベクターの値とオブジェクトの値を表示できるようにしました。ロードに失敗したときのデータの詳細がわかるようになりました。</p>
         
     | 
| 
      
 74 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <li><p class="first">selectコマンドに <tt class="docutils literal"><span class="pre">adjuster</span></tt> オプションを追加しました。adjusterオプションのシンタックスは INDEX_COLUMN @ STRING_LITERAL (* FACTOR) です。</p>
         
     | 
| 
      
 76 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/columns/vector.html#weight-vector-column"><em>重み付きベクターカラム</em></a> をサポートしました。重みつきベクターを使うにはカラム作成時に 'COLUMN_VECTOR|WITH_WEIGHT' を指定する必要があります。</p>
         
     | 
| 
      
 78 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li><p class="first">SunOSでビルドに必要なMIN/MAXの定義がなかったので追加しました。[GitHub#154] [Sebastian Wiedenrothさんがパッチ提供]</p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <li><p class="first">使われなくなった領域を再利用するように改善しました。これによりデータべースの肥大化を抑制します。</p>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><em>groonga-suggest-httpd</em></a> のGETパラメータに関するドキュメントを追加しました。</p>
         
     | 
| 
      
 84 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="reference/column.html"><em>カラム</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
      
 86 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 87 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="reference/columns/vector.html"><em>ベクターカラム</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
      
 88 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 89 
     | 
    
         
            +
            <li><p class="first">[column_list] 重みつきベクターカラムを表示できるようにしました。</p>
         
     | 
| 
      
 90 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <li><p class="first">[column_create] マルチカラムインデックスを作成するときに、WITH_SECTIONフラグが指定されていない場合のエラーチェックを追加しました。</p>
         
     | 
| 
      
 92 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <li><p class="first">[httpd] NginxHttpStubStatusModuleをgroonga-httpdで有効にしました。[長野雅広さんが提案]</p>
         
     | 
| 
      
 94 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 95 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 96 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 97 
     | 
    
         
            +
            <div class="section" id="fixes">
         
     | 
| 
      
 98 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 99 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 100 
     | 
    
         
            +
            <li><p class="first">除算によるオーバーフローが発生する不具合を修正しました。例えば、'COLUMN(最小値) / -1' をInt32やInt64で定義したカラムに適用すると発生します。[#2307]</p>
         
     | 
| 
      
 101 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 102 
     | 
    
         
            +
            <li><p class="first">剰余演算 '%' ではなく、除算 '/' を行ってしまう不具合を修正しました。[#2307]</p>
         
     | 
| 
      
 103 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 104 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="reference/commands/column_rename.html"><em>column_rename</em></a> のドキュメントの説明の誤りを修正しました。</p>
         
     | 
| 
      
 105 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 106 
     | 
    
         
            +
            <li><p class="first">配列の領域外アクセスが発生しうる問題を修正しました。[GitHub#158] [dcb314さんが報告]</p>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 108 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 109 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 110 
     | 
    
         
            +
            <div class="section" id="thanks">
         
     | 
| 
      
 111 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 112 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 113 
     | 
    
         
            +
            <li><p class="first">nise_nabeさん</p>
         
     | 
| 
      
 114 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 115 
     | 
    
         
            +
            <li><p class="first">Sebastian Wiedenrothさん</p>
         
     | 
| 
      
 116 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 117 
     | 
    
         
            +
            <li><p class="first">dcb314さん</p>
         
     | 
| 
      
 118 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 119 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 121 
     | 
    
         
            +
            </div>
         
     | 
| 
       66 
122 
     | 
    
         
             
            <div class="section" id="release-4-0-0-2014-02-09">
         
     | 
| 
       67 
123 
     | 
    
         
             
            <span id="release-4-0-0"></span><h2>4.0.0リリース - 2014/02/09<a class="headerlink" href="#release-4-0-0-2014-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       68 
124 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       69 
125 
     | 
    
         
             
            <li><p class="first">バージョン4.0.0になりました!</p>
         
     | 
| 
       70 
126 
     | 
    
         
             
            </li>
         
     | 
| 
       71 
127 
     | 
    
         
             
            </ul>
         
     | 
| 
       72 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       73 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 128 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 129 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       74 
130 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       75 
131 
     | 
    
         
             
            <li><p class="first">[normalizer] "checks" というノーマライズ前の文字列だと次の文字の位置がどこか計算するのに使う値を表示できるようにしました。この機能を有効にするには <cite>WITH_CHECK</cite> フラグを使用します。</p>
         
     | 
| 
       76 
132 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -78,8 +134,8 @@ 
     | 
|
| 
       78 
134 
     | 
    
         
             
            </li>
         
     | 
| 
       79 
135 
     | 
    
         
             
            </ul>
         
     | 
| 
       80 
136 
     | 
    
         
             
            </div>
         
     | 
| 
       81 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       82 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 137 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 138 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       83 
139 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       84 
140 
     | 
    
         
             
            <li><p class="first"><tt class="docutils literal"><span class="pre">grn_expr</span></tt> のオブジェクトが解放後にアクセスされクラッシュしてしまう不具合を修正しました。Groongaサーバーを利用している場合にはこの不具合に該当しません。主にこの不具合の影響を受けるのはRroongaユーザーです。この不具合はRroongaのAPIに <tt class="docutils literal"><span class="pre">_key</span></tt> のような疑似カラム名を含んだ指定をすることで発生します。</p>
         
     | 
| 
       85 
141 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -95,8 +151,8 @@ 
     | 
|
| 
       95 
151 
     | 
    
         
             
            </li>
         
     | 
| 
       96 
152 
     | 
    
         
             
            </ul>
         
     | 
| 
       97 
153 
     | 
    
         
             
            </div>
         
     | 
| 
       98 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       99 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 154 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 155 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       100 
156 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       101 
157 
     | 
    
         
             
            <li><p class="first">yokuさん</p>
         
     | 
| 
       102 
158 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -109,8 +165,8 @@ 
     | 
|
| 
       109 
165 
     | 
    
         
             
            </div>
         
     | 
| 
       110 
166 
     | 
    
         
             
            <div class="section" id="release-3-1-2-2014-01-29">
         
     | 
| 
       111 
167 
     | 
    
         
             
            <span id="release-3-1-2"></span><h2>3.1.2リリース - 2014/01/29<a class="headerlink" href="#release-3-1-2-2014-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       112 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       113 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 168 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 169 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       114 
170 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       115 
171 
     | 
    
         
             
            <li><p class="first">[doc] "Groonga" 表記に更新しました。[cosmo0920さんがパッチ提供] [GitHub#136, #137, #138, #139, #140, #141, #142, #143, #144, #145, #146, #147, #148, #149, #150, #151]</p>
         
     | 
| 
       116 
172 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -126,8 +182,8 @@ 
     | 
|
| 
       126 
182 
     | 
    
         
             
            </li>
         
     | 
| 
       127 
183 
     | 
    
         
             
            </ul>
         
     | 
| 
       128 
184 
     | 
    
         
             
            </div>
         
     | 
| 
       129 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       130 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 185 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 186 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       131 
187 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       132 
188 
     | 
    
         
             
            <li><p class="first">空のクエリに対してインデックスを使わないようにしました。この変更で、空のクエリでも検索できるようになりました。ただし空のレコードがたくさんあるとパフォーマンスの問題があることに注意してください。 [groonga-dev,02052] [村上さんが報告]</p>
         
     | 
| 
       133 
189 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -139,8 +195,8 @@ 
     | 
|
| 
       139 
195 
     | 
    
         
             
            </li>
         
     | 
| 
       140 
196 
     | 
    
         
             
            </ul>
         
     | 
| 
       141 
197 
     | 
    
         
             
            </div>
         
     | 
| 
       142 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       143 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 198 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 199 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       144 
200 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       145 
201 
     | 
    
         
             
            <li><p class="first">cosmo0920さん</p>
         
     | 
| 
       146 
202 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -153,8 +209,8 @@ 
     | 
|
| 
       153 
209 
     | 
    
         
             
            </div>
         
     | 
| 
       154 
210 
     | 
    
         
             
            <div class="section" id="release-3-1-1-2013-12-29">
         
     | 
| 
       155 
211 
     | 
    
         
             
            <span id="release-3-1-1"></span><h2>3.1.1リリース - 2013/12/29<a class="headerlink" href="#release-3-1-1-2013-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       156 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       157 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 212 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 213 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       158 
214 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       159 
215 
     | 
    
         
             
            <li><p class="first">[deb] Debianのパッケージングポリシーに準拠するようにしました。[groonga-dev,01930] [やまねさんが提案]</p>
         
     | 
| 
       160 
216 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -182,8 +238,8 @@ 
     | 
|
| 
       182 
238 
     | 
    
         
             
            </li>
         
     | 
| 
       183 
239 
     | 
    
         
             
            </ul>
         
     | 
| 
       184 
240 
     | 
    
         
             
            </div>
         
     | 
| 
       185 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       186 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 241 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 242 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       187 
243 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       188 
244 
     | 
    
         
             
            <li><p class="first">[munin] GQTPのポート番号の誤りを修正しました。</p>
         
     | 
| 
       189 
245 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -191,8 +247,8 @@ 
     | 
|
| 
       191 
247 
     | 
    
         
             
            </li>
         
     | 
| 
       192 
248 
     | 
    
         
             
            </ul>
         
     | 
| 
       193 
249 
     | 
    
         
             
            </div>
         
     | 
| 
       194 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       195 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 250 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 251 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       196 
252 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       197 
253 
     | 
    
         
             
            <li><p class="first">やまねひできさん</p>
         
     | 
| 
       198 
254 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -207,8 +263,8 @@ 
     | 
|
| 
       207 
263 
     | 
    
         
             
            </div>
         
     | 
| 
       208 
264 
     | 
    
         
             
            <div class="section" id="release-3-1-0-2013-11-29">
         
     | 
| 
       209 
265 
     | 
    
         
             
            <span id="release-3-1-0"></span><h2>3.1.0リリース - 2013/11/29<a class="headerlink" href="#release-3-1-0-2013-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       210 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       211 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 266 
     | 
    
         
            +
            <div class="section" id="id10">
         
     | 
| 
      
 267 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       212 
268 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       213 
269 
     | 
    
         
             
            <li><p class="first">[実験的] 同じ値なら更新をスキップするオプションをサポートしました。
         
     | 
| 
       214 
270 
     | 
    
         
             
            GRN_JA_SKIP_SAME_VALUE_PUT=yesを環境変数に設定すると有効になります。</p>
         
     | 
| 
         @@ -223,8 +279,8 @@ GRN_JA_SKIP_SAME_VALUE_PUT=yesを環境変数に設定すると有効になり 
     | 
|
| 
       223 
279 
     | 
    
         
             
            </li>
         
     | 
| 
       224 
280 
     | 
    
         
             
            </ul>
         
     | 
| 
       225 
281 
     | 
    
         
             
            </div>
         
     | 
| 
       226 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       227 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 282 
     | 
    
         
            +
            <div class="section" id="id11">
         
     | 
| 
      
 283 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       228 
284 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       229 
285 
     | 
    
         
             
            <li><p class="first">"_value"カラムの型がInt32として扱われる問題を修正しました。このバグ
         
     | 
| 
       230 
286 
     | 
    
         
             
            で"_value"カラムの値が意図せずキャストされてしまうことがありました。[瀧内さんが報告]</p>
         
     | 
| 
         @@ -246,8 +302,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       246 
302 
     | 
    
         
             
            </li>
         
     | 
| 
       247 
303 
     | 
    
         
             
            </ul>
         
     | 
| 
       248 
304 
     | 
    
         
             
            </div>
         
     | 
| 
       249 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       250 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 305 
     | 
    
         
            +
            <div class="section" id="id12">
         
     | 
| 
      
 306 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       251 
307 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       252 
308 
     | 
    
         
             
            <li><p class="first">sho MINAGAWAさん</p>
         
     | 
| 
       253 
309 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -262,8 +318,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       262 
318 
     | 
    
         
             
            </div>
         
     | 
| 
       263 
319 
     | 
    
         
             
            <div class="section" id="release-3-0-9-2013-10-29">
         
     | 
| 
       264 
320 
     | 
    
         
             
            <span id="release-3-0-9"></span><h2>3.0.9リリース - 2013/10/29<a class="headerlink" href="#release-3-0-9-2013-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       265 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       266 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 321 
     | 
    
         
            +
            <div class="section" id="id13">
         
     | 
| 
      
 322 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       267 
323 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       268 
324 
     | 
    
         
             
            <li><p class="first">[doc][httpd] <a class="reference internal" href="reference/executables/groonga-httpd.html#groonga-database-auto-create"><em>groonga_database_auto_create</em></a> ディレクティブのドキュメントを追加しました。</p>
         
     | 
| 
       269 
325 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -293,8 +349,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       293 
349 
     | 
    
         
             
            </li>
         
     | 
| 
       294 
350 
     | 
    
         
             
            </ul>
         
     | 
| 
       295 
351 
     | 
    
         
             
            </div>
         
     | 
| 
       296 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       297 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 352 
     | 
    
         
            +
            <div class="section" id="id14">
         
     | 
| 
      
 353 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       298 
354 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       299 
355 
     | 
    
         
             
            <li><p class="first">オーバーフローによってSEGVを引き起こす不具合を修正しました。この問題はインデックスのサイズが仮想メモリのサイズを超過したような場合に発生します。 [groonga-dev,01661] [村上さんが報告]</p>
         
     | 
| 
       300 
356 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -314,8 +370,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       314 
370 
     | 
    
         
             
            </li>
         
     | 
| 
       315 
371 
     | 
    
         
             
            </ul>
         
     | 
| 
       316 
372 
     | 
    
         
             
            </div>
         
     | 
| 
       317 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       318 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 373 
     | 
    
         
            +
            <div class="section" id="id15">
         
     | 
| 
      
 374 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       319 
375 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       320 
376 
     | 
    
         
             
            <li><p class="first">村上さん</p>
         
     | 
| 
       321 
377 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -330,8 +386,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       330 
386 
     | 
    
         
             
            </div>
         
     | 
| 
       331 
387 
     | 
    
         
             
            <div class="section" id="release-3-0-8-2013-09-29">
         
     | 
| 
       332 
388 
     | 
    
         
             
            <span id="release-3-0-8"></span><h2>3.0.8リリース - 2013/09/29<a class="headerlink" href="#release-3-0-8-2013-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       333 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       334 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 389 
     | 
    
         
            +
            <div class="section" id="id16">
         
     | 
| 
      
 390 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       335 
391 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       336 
392 
     | 
    
         
             
            <li><p class="first">[admin] 検索機能のエラー処理を改善しました。エラーメッセージを表示した後に、読み込み中のダイアログを消去します。 [orangainさんがパッチ提供]</p>
         
     | 
| 
       337 
393 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -361,15 +417,15 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       361 
417 
     | 
    
         
             
            </li>
         
     | 
| 
       362 
418 
     | 
    
         
             
            </ul>
         
     | 
| 
       363 
419 
     | 
    
         
             
            </div>
         
     | 
| 
       364 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       365 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 420 
     | 
    
         
            +
            <div class="section" id="id17">
         
     | 
| 
      
 421 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       366 
422 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       367 
423 
     | 
    
         
             
            <li><p class="first">[admin] COLUMN_VECTOR の値を追加するボタンが機能しない不具合を修正しました。</p>
         
     | 
| 
       368 
424 
     | 
    
         
             
            </li>
         
     | 
| 
       369 
425 
     | 
    
         
             
            </ul>
         
     | 
| 
       370 
426 
     | 
    
         
             
            </div>
         
     | 
| 
       371 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       372 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 427 
     | 
    
         
            +
            <div class="section" id="id18">
         
     | 
| 
      
 428 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       373 
429 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       374 
430 
     | 
    
         
             
            <li><p class="first">@orangainさん</p>
         
     | 
| 
       375 
431 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -382,8 +438,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       382 
438 
     | 
    
         
             
            </div>
         
     | 
| 
       383 
439 
     | 
    
         
             
            <div class="section" id="release-3-0-7-2013-08-29">
         
     | 
| 
       384 
440 
     | 
    
         
             
            <span id="release-3-0-7"></span><h2>3.0.7リリース - 2013/08/29<a class="headerlink" href="#release-3-0-7-2013-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       385 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       386 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 441 
     | 
    
         
            +
            <div class="section" id="id19">
         
     | 
| 
      
 442 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       387 
443 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       388 
444 
     | 
    
         
             
            <li><p class="first">APIドキュメントを追加しました。[groonga-dev,01593] [GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]  [whombxさんがパッチを提供]</p>
         
     | 
| 
       389 
445 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -403,8 +459,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       403 
459 
     | 
    
         
             
            </li>
         
     | 
| 
       404 
460 
     | 
    
         
             
            </ul>
         
     | 
| 
       405 
461 
     | 
    
         
             
            </div>
         
     | 
| 
       406 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       407 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 462 
     | 
    
         
            +
            <div class="section" id="id20">
         
     | 
| 
      
 463 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       408 
464 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       409 
465 
     | 
    
         
             
            <li><p class="first">式のエラーによってスタックオーバーフローを引き起す可能性のある不具合を修正しました。この変更はエラーが積み重なって突然groongaがクラッシュするのを防ぎます。</p>
         
     | 
| 
       410 
466 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -432,8 +488,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       432 
488 
     | 
    
         
             
            </li>
         
     | 
| 
       433 
489 
     | 
    
         
             
            </ul>
         
     | 
| 
       434 
490 
     | 
    
         
             
            </div>
         
     | 
| 
       435 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       436 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 491 
     | 
    
         
            +
            <div class="section" id="id21">
         
     | 
| 
      
 492 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       437 
493 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       438 
494 
     | 
    
         
             
            <li><p class="first">whombxさん</p>
         
     | 
| 
       439 
495 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -452,8 +508,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       452 
508 
     | 
    
         
             
            </div>
         
     | 
| 
       453 
509 
     | 
    
         
             
            <div class="section" id="release-3-0-6-2013-07-29">
         
     | 
| 
       454 
510 
     | 
    
         
             
            <span id="release-3-0-6"></span><h2>3.0.6リリース - 2013/07/29<a class="headerlink" href="#release-3-0-6-2013-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       455 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       456 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 511 
     | 
    
         
            +
            <div class="section" id="id22">
         
     | 
| 
      
 512 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       457 
513 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       458 
514 
     | 
    
         
             
            <li><p class="first">[doc] <a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a> の引数に関するドキュメントを追加しました。</p>
         
     | 
| 
       459 
515 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -471,15 +527,15 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       471 
527 
     | 
    
         
             
            </li>
         
     | 
| 
       472 
528 
     | 
    
         
             
            </ul>
         
     | 
| 
       473 
529 
     | 
    
         
             
            </div>
         
     | 
| 
       474 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       475 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 530 
     | 
    
         
            +
            <div class="section" id="id23">
         
     | 
| 
      
 531 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       476 
532 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       477 
533 
     | 
    
         
             
            <li><p class="first">特定の関数(<tt class="docutils literal"><span class="pre">grn_obj_path()</span></tt>) が <tt class="docutils literal"><span class="pre">select</span></tt> のようなビルトイン関数で呼ばれたときにクラッシュする不具合を修正しました。[瀧内さんが報告]</p>
         
     | 
| 
       478 
534 
     | 
    
         
             
            </li>
         
     | 
| 
       479 
535 
     | 
    
         
             
            </ul>
         
     | 
| 
       480 
536 
     | 
    
         
             
            </div>
         
     | 
| 
       481 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       482 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 537 
     | 
    
         
            +
            <div class="section" id="id24">
         
     | 
| 
      
 538 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       483 
539 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       484 
540 
     | 
    
         
             
            <li><p class="first">稲田尚也さん</p>
         
     | 
| 
       485 
541 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -494,8 +550,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       494 
550 
     | 
    
         
             
            </div>
         
     | 
| 
       495 
551 
     | 
    
         
             
            <div class="section" id="release-3-0-5-2013-06-29">
         
     | 
| 
       496 
552 
     | 
    
         
             
            <span id="release-3-0-5"></span><h2>3.0.5リリース - 2013/06/29<a class="headerlink" href="#release-3-0-5-2013-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       497 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       498 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 553 
     | 
    
         
            +
            <div class="section" id="id25">
         
     | 
| 
      
 554 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       499 
555 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       500 
556 
     | 
    
         
             
            <li><p class="first">[doc] <tt class="docutils literal"><span class="pre">query()</span></tt> の <tt class="docutils literal"><span class="pre">match_columns</span></tt> と <tt class="docutils literal"><span class="pre">query_string</span></tt> 引数のサマリを追加しました。</p>
         
     | 
| 
       501 
557 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -509,8 +565,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       509 
565 
     | 
    
         
             
            </li>
         
     | 
| 
       510 
566 
     | 
    
         
             
            </ul>
         
     | 
| 
       511 
567 
     | 
    
         
             
            </div>
         
     | 
| 
       512 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       513 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 568 
     | 
    
         
            +
            <div class="section" id="id26">
         
     | 
| 
      
 569 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       514 
570 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       515 
571 
     | 
    
         
             
            <li><p class="first">テーブル作成時に必要なロックをかけていないことでmroongaがクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
         
     | 
| 
       516 
572 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -528,8 +584,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       528 
584 
     | 
    
         
             
            </li>
         
     | 
| 
       529 
585 
     | 
    
         
             
            </ul>
         
     | 
| 
       530 
586 
     | 
    
         
             
            </div>
         
     | 
| 
       531 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       532 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 587 
     | 
    
         
            +
            <div class="section" id="id27">
         
     | 
| 
      
 588 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       533 
589 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       534 
590 
     | 
    
         
             
            <li><p class="first">Y.Kentaroさん</p>
         
     | 
| 
       535 
591 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -542,8 +598,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       542 
598 
     | 
    
         
             
            </div>
         
     | 
| 
       543 
599 
     | 
    
         
             
            <div class="section" id="release-3-0-4-2013-05-29">
         
     | 
| 
       544 
600 
     | 
    
         
             
            <span id="release-3-0-4"></span><h2>3.0.4リリース - 2013/05/29<a class="headerlink" href="#release-3-0-4-2013-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       545 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       546 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 601 
     | 
    
         
            +
            <div class="section" id="id28">
         
     | 
| 
      
 602 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       547 
603 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       548 
604 
     | 
    
         
             
            <li><p class="first">[tokenizer] ノーマライズした文字列が与えられないときにログメッセージを表示するようにしました。</p>
         
     | 
| 
       549 
605 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -575,8 +631,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       575 
631 
     | 
    
         
             
            </li>
         
     | 
| 
       576 
632 
     | 
    
         
             
            </ul>
         
     | 
| 
       577 
633 
     | 
    
         
             
            </div>
         
     | 
| 
       578 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       579 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 634 
     | 
    
         
            +
            <div class="section" id="id29">
         
     | 
| 
      
 635 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       580 
636 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       581 
637 
     | 
    
         
             
            <li><p class="first">[tokenizer] エラー時のメモリリークを修正しました。</p>
         
     | 
| 
       582 
638 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -594,8 +650,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       594 
650 
     | 
    
         
             
            </li>
         
     | 
| 
       595 
651 
     | 
    
         
             
            </ul>
         
     | 
| 
       596 
652 
     | 
    
         
             
            </div>
         
     | 
| 
       597 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       598 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 653 
     | 
    
         
            +
            <div class="section" id="id30">
         
     | 
| 
      
 654 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       599 
655 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       600 
656 
     | 
    
         
             
            <li><p class="first">@ceekzさん</p>
         
     | 
| 
       601 
657 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -614,8 +670,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       614 
670 
     | 
    
         
             
            </div>
         
     | 
| 
       615 
671 
     | 
    
         
             
            <div class="section" id="release-3-0-3-2013-04-29">
         
     | 
| 
       616 
672 
     | 
    
         
             
            <span id="release-3-0-3"></span><h2>3.0.3リリース - 2013/04/29<a class="headerlink" href="#release-3-0-3-2013-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       617 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       618 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 673 
     | 
    
         
            +
            <div class="section" id="id31">
         
     | 
| 
      
 674 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       619 
675 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       620 
676 
     | 
    
         
             
            <li><p class="first">[suggest] <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> を使って学習時の重みづけをカスタマイズできるようになりました。</p>
         
     | 
| 
       621 
677 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -638,8 +694,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       638 
694 
     | 
    
         
             
            </div>
         
     | 
| 
       639 
695 
     | 
    
         
             
            <div class="section" id="release-3-0-2-2013-03-29">
         
     | 
| 
       640 
696 
     | 
    
         
             
            <span id="release-3-0-2"></span><h2>3.0.2リリース - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       641 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       642 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 697 
     | 
    
         
            +
            <div class="section" id="id32">
         
     | 
| 
      
 698 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id32" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       643 
699 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       644 
700 
     | 
    
         
             
            <li><p class="first">2つ以上のインデックスをテーブルのキーに対して張れるようにしました。この変更はインデックスを張ったキーへ新たなキーをロードしたときにクラッシュしないようにします。</p>
         
     | 
| 
       645 
701 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -663,8 +719,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       663 
719 
     | 
    
         
             
            </li>
         
     | 
| 
       664 
720 
     | 
    
         
             
            </ul>
         
     | 
| 
       665 
721 
     | 
    
         
             
            </div>
         
     | 
| 
       666 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       667 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 722 
     | 
    
         
            +
            <div class="section" id="id33">
         
     | 
| 
      
 723 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id33" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       668 
724 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       669 
725 
     | 
    
         
             
            <li><p class="first"><tt class="docutils literal"><span class="pre">snippet_html(XXX),</span> <span class="pre">XXX</span></tt> を実行すると "stack error"になる不具合を修正しました。この不具合は <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'snippet_html(title),</span> <span class="pre">content'</span></tt> といったクエリに影響します。[Groonga-talk (no subject)] [Hendro Wibowoさんが報告]</p>
         
     | 
| 
       670 
726 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -678,8 +734,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       678 
734 
     | 
    
         
             
            </li>
         
     | 
| 
       679 
735 
     | 
    
         
             
            </ul>
         
     | 
| 
       680 
736 
     | 
    
         
             
            </div>
         
     | 
| 
       681 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       682 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 737 
     | 
    
         
            +
            <div class="section" id="id34">
         
     | 
| 
      
 738 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id34" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       683 
739 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       684 
740 
     | 
    
         
             
            <li><p class="first">Hendro Wibowoさん</p>
         
     | 
| 
       685 
741 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -692,8 +748,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       692 
748 
     | 
    
         
             
            </div>
         
     | 
| 
       693 
749 
     | 
    
         
             
            <div class="section" id="release-3-0-1-2013-02-28">
         
     | 
| 
       694 
750 
     | 
    
         
             
            <span id="release-3-0-1"></span><h2>3.0.1リリース - 2013/02/28<a class="headerlink" href="#release-3-0-1-2013-02-28" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       695 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       696 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 751 
     | 
    
         
            +
            <div class="section" id="id35">
         
     | 
| 
      
 752 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id35" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       697 
753 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       698 
754 
     | 
    
         
             
            <li><p class="first">loadコマンドでデータをロードするときに参照カラムに対するBoolの設定をサポートしました。</p>
         
     | 
| 
       699 
755 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -709,8 +765,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       709 
765 
     | 
    
         
             
            </li>
         
     | 
| 
       710 
766 
     | 
    
         
             
            </ul>
         
     | 
| 
       711 
767 
     | 
    
         
             
            </div>
         
     | 
| 
       712 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       713 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 768 
     | 
    
         
            +
            <div class="section" id="id36">
         
     | 
| 
      
 769 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id36" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       714 
770 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       715 
771 
     | 
    
         
             
            <li><p class="first"><tt class="docutils literal"><span class="pre">grn_index_cursor_next()</span></tt> が意図せずNULLを返す不具合を修正しました。このせいで要素を削除した後に不正なインデックスを返していました。この不具合はmroongaをストレージモードで動かしたときに発生します。 [groonga-dev,01192] [b senbokuさんが報告]</p>
         
     | 
| 
       716 
772 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -720,8 +776,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       720 
776 
     | 
    
         
             
            </li>
         
     | 
| 
       721 
777 
     | 
    
         
             
            </ul>
         
     | 
| 
       722 
778 
     | 
    
         
             
            </div>
         
     | 
| 
       723 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       724 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 779 
     | 
    
         
            +
            <div class="section" id="id37">
         
     | 
| 
      
 780 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id37" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       725 
781 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       726 
782 
     | 
    
         
             
            <li><p class="first">b senbokuさん</p>
         
     | 
| 
       727 
783 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -734,8 +790,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       734 
790 
     | 
    
         
             
            <li><p class="first">バージョン3.0.0になりました!</p>
         
     | 
| 
       735 
791 
     | 
    
         
             
            </li>
         
     | 
| 
       736 
792 
     | 
    
         
             
            </ul>
         
     | 
| 
       737 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       738 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 793 
     | 
    
         
            +
            <div class="section" id="id38">
         
     | 
| 
      
 794 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id38" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       739 
795 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       740 
796 
     | 
    
         
             
            <li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をEUC-JPでなくUTF-8の辞書ものを明示的にインストールするように修正した。</p>
         
     | 
| 
       741 
797 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -745,8 +801,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       745 
801 
     | 
    
         
             
            </li>
         
     | 
| 
       746 
802 
     | 
    
         
             
            </ul>
         
     | 
| 
       747 
803 
     | 
    
         
             
            </div>
         
     | 
| 
       748 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       749 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 804 
     | 
    
         
            +
            <div class="section" id="id39">
         
     | 
| 
      
 805 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id39" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       750 
806 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       751 
807 
     | 
    
         
             
            <li><p class="first">岩井さん</p>
         
     | 
| 
       752 
808 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -755,8 +811,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       755 
811 
     | 
    
         
             
            </div>
         
     | 
| 
       756 
812 
     | 
    
         
             
            <div class="section" id="release-2-1-2-2013-01-29">
         
     | 
| 
       757 
813 
     | 
    
         
             
            <span id="release-2-1-2"></span><h2>2.1.2リリース - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       758 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       759 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 814 
     | 
    
         
            +
            <div class="section" id="id40">
         
     | 
| 
      
 815 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id40" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       760 
816 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       761 
817 
     | 
    
         
             
            <li><p class="first">複数の <tt class="docutils literal"><span class="pre">query()</span></tt> を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポートしました。例えば、キーワードごとに異なる重みづけを指定して検索するのに'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'などと <tt class="docutils literal"><span class="pre">--filter</span></tt> に指定することができます。</p>
         
     | 
| 
       762 
818 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -784,8 +840,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       784 
840 
     | 
    
         
             
            </li>
         
     | 
| 
       785 
841 
     | 
    
         
             
            </ul>
         
     | 
| 
       786 
842 
     | 
    
         
             
            </div>
         
     | 
| 
       787 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       788 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 843 
     | 
    
         
            +
            <div class="section" id="id41">
         
     | 
| 
      
 844 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id41" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       789 
845 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       790 
846 
     | 
    
         
             
            <li><p class="first">MeCabトークナイザーの共有オブジェクトが見つからなくてもエラーをログに記録しないようにした。 [groonga-dev,01174] [wingさんが報告]</p>
         
     | 
| 
       791 
847 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -795,8 +851,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       795 
851 
     | 
    
         
             
            </li>
         
     | 
| 
       796 
852 
     | 
    
         
             
            </ul>
         
     | 
| 
       797 
853 
     | 
    
         
             
            </div>
         
     | 
| 
       798 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       799 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 854 
     | 
    
         
            +
            <div class="section" id="id42">
         
     | 
| 
      
 855 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id42" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       800 
856 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       801 
857 
     | 
    
         
             
            <li><p class="first">wingさん</p>
         
     | 
| 
       802 
858 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -806,8 +862,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       806 
862 
     | 
    
         
             
            <div class="section" id="release-2-1-1-2012-12-29">
         
     | 
| 
       807 
863 
     | 
    
         
             
            <span id="release-2-1-1"></span><h2>2.1.1リリース - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       808 
864 
     | 
    
         
             
            <p>2.1.0のバグフィックスリリースです。2.1.0を使っている人は2.1.0ではなく2.1.1を使ってください。</p>
         
     | 
| 
       809 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       810 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 865 
     | 
    
         
            +
            <div class="section" id="id43">
         
     | 
| 
      
 866 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id43" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       811 
867 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       812 
868 
     | 
    
         
             
            <li><p class="first">groonga 2.0.8以前で作成したデータベース中の <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の情報が失われる問題を修正。</p>
         
     | 
| 
       813 
869 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -826,8 +882,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       826 
882 
     | 
    
         
             
            <p>このリリースでは <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションをサポートしましたが、副作用があり、一度でも古いバージョンのデータベースを新しいバージョンのgroongaで開くと、古いバージョンのgroongaではデータベースを開けなくなります。</p>
         
     | 
| 
       827 
883 
     | 
    
         
             
            <p class="last">もうひとつトークナイザプラグインAPIに関する非互換な変更があります。 <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの引数が変更されました。このAPIの変更はトークナイザプラグインの開発者に影響があります。</p>
         
     | 
| 
       828 
884 
     | 
    
         
             
            </div>
         
     | 
| 
       829 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       830 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 885 
     | 
    
         
            +
            <div class="section" id="id44">
         
     | 
| 
      
 886 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id44" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       831 
887 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       832 
888 
     | 
    
         
             
            <li><p class="first">[doc] <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> に関するドキュメントを追加。</p>
         
     | 
| 
       833 
889 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -849,8 +905,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       849 
905 
     | 
    
         
             
            </li>
         
     | 
| 
       850 
906 
     | 
    
         
             
            </ul>
         
     | 
| 
       851 
907 
     | 
    
         
             
            </div>
         
     | 
| 
       852 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       853 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 908 
     | 
    
         
            +
            <div class="section" id="id45">
         
     | 
| 
      
 909 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id45" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       854 
910 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       855 
911 
     | 
    
         
             
            <li><p class="first">[windows] <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> フラグをファイルを開くときに指定するようにした。groonga HTTPサーバが無限ループに陥っていた問題が解決します。 [GitHub#47] [Shimomura Tatsuyaさんがパッチ提供]</p>
         
     | 
| 
       856 
912 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -860,8 +916,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       860 
916 
     | 
    
         
             
            </li>
         
     | 
| 
       861 
917 
     | 
    
         
             
            </ul>
         
     | 
| 
       862 
918 
     | 
    
         
             
            </div>
         
     | 
| 
       863 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       864 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 919 
     | 
    
         
            +
            <div class="section" id="id46">
         
     | 
| 
      
 920 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id46" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       865 
921 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       866 
922 
     | 
    
         
             
            <li><p class="first">嶋田 大貴さん</p>
         
     | 
| 
       867 
923 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -872,8 +928,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       872 
928 
     | 
    
         
             
            </div>
         
     | 
| 
       873 
929 
     | 
    
         
             
            <div class="section" id="release-2-0-9-2012-11-29">
         
     | 
| 
       874 
930 
     | 
    
         
             
            <span id="release-2-0-9"></span><h2>2.0.9リリース - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       875 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       876 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 931 
     | 
    
         
            +
            <div class="section" id="id47">
         
     | 
| 
      
 932 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id47" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       877 
933 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       878 
934 
     | 
    
         
             
            <li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance</span></tt> 関数の近似方法として <tt class="docutils literal"><span class="pre">rectangle</span></tt> を指定したときに境界をまたいでも距離の算出できるようにした。 [#1534]</p>
         
     | 
| 
       879 
935 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -901,8 +957,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       901 
957 
     | 
    
         
             
            </li>
         
     | 
| 
       902 
958 
     | 
    
         
             
            </ul>
         
     | 
| 
       903 
959 
     | 
    
         
             
            </div>
         
     | 
| 
       904 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       905 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 960 
     | 
    
         
            +
            <div class="section" id="id48">
         
     | 
| 
      
 961 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id48" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       906 
962 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       907 
963 
     | 
    
         
             
            <li><p class="first"><a class="reference internal" href="spec/gqtp.html#gqtp-header-spec"><em>GQTPヘッダー</em></a> にてステータスコードにネットワークバイトオーダーを使用するように修正した。ネットワークプロトコルの慣習に合わせたものですが、これによりgroongaバージョン2.0.8以下のクライアントからgroongaバージョン2.0.9以上のサーバに接続してコマンドの実行に失敗したときにバイトオーダーが異なるため、ステータスコードを正しく表示できなくなります。</p>
         
     | 
| 
       908 
964 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -924,8 +980,8 @@ Groongaを'--enable-benchmark'でビルドしようとしていた場合に問 
     | 
|
| 
       924 
980 
     | 
    
         
             
            This change not to contain such a metadata as search results.</li>
         
     | 
| 
       925 
981 
     | 
    
         
             
            </ul>
         
     | 
| 
       926 
982 
     | 
    
         
             
            </div>
         
     | 
| 
       927 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       928 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 983 
     | 
    
         
            +
            <div class="section" id="id49">
         
     | 
| 
      
 984 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id49" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       929 
985 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       930 
986 
     | 
    
         
             
            <li><p class="first">嶋田 大貴さん</p>
         
     | 
| 
       931 
987 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -938,8 +994,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       938 
994 
     | 
    
         
             
            </div>
         
     | 
| 
       939 
995 
     | 
    
         
             
            <div class="section" id="release-2-0-8-2012-10-29">
         
     | 
| 
       940 
996 
     | 
    
         
             
            <span id="release-2-0-8"></span><h2>2.0.8リリース - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       941 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       942 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 997 
     | 
    
         
            +
            <div class="section" id="id50">
         
     | 
| 
      
 998 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id50" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       943 
999 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       944 
1000 
     | 
    
         
             
            <li><p class="first">[rpm] server-httpとhttpdパッケージの説明を改善した。 [Daiki Uenoさんが提案]</p>
         
     | 
| 
       945 
1001 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -955,8 +1011,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       955 
1011 
     | 
    
         
             
            </li>
         
     | 
| 
       956 
1012 
     | 
    
         
             
            </ul>
         
     | 
| 
       957 
1013 
     | 
    
         
             
            </div>
         
     | 
| 
       958 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       959 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1014 
     | 
    
         
            +
            <div class="section" id="id51">
         
     | 
| 
      
 1015 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id51" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       960 
1016 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       961 
1017 
     | 
    
         
             
            <li><p class="first">[rpm] 不要な"Requires"をspecファイルから削除するようにした。[Daiki Uenoさんが報告]</p>
         
     | 
| 
       962 
1018 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -970,8 +1026,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       970 
1026 
     | 
    
         
             
            </li>
         
     | 
| 
       971 
1027 
     | 
    
         
             
            </ul>
         
     | 
| 
       972 
1028 
     | 
    
         
             
            </div>
         
     | 
| 
       973 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       974 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1029 
     | 
    
         
            +
            <div class="section" id="id52">
         
     | 
| 
      
 1030 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id52" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       975 
1031 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       976 
1032 
     | 
    
         
             
            <li><p class="first">うえのさん</p>
         
     | 
| 
       977 
1033 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -984,8 +1040,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       984 
1040 
     | 
    
         
             
            </div>
         
     | 
| 
       985 
1041 
     | 
    
         
             
            <div class="section" id="release-2-0-7-2012-09-29">
         
     | 
| 
       986 
1042 
     | 
    
         
             
            <span id="release-2-0-7"></span><h2>2.0.7リリース - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       987 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       988 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1043 
     | 
    
         
            +
            <div class="section" id="id53">
         
     | 
| 
      
 1044 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id53" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       989 
1045 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       990 
1046 
     | 
    
         
             
            <li><p class="first">[doc] <tt class="docutils literal"><span class="pre">--query_flags</span></tt> の説明を追加。</p>
         
     | 
| 
       991 
1047 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1013,8 +1069,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1013 
1069 
     | 
    
         
             
            </li>
         
     | 
| 
       1014 
1070 
     | 
    
         
             
            </ul>
         
     | 
| 
       1015 
1071 
     | 
    
         
             
            </div>
         
     | 
| 
       1016 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1017 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1072 
     | 
    
         
            +
            <div class="section" id="id54">
         
     | 
| 
      
 1073 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id54" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1018 
1074 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1019 
1075 
     | 
    
         
             
            <li><p class="first"><tt class="docutils literal"><span class="pre">load</span></tt> コマンド実行時にベクタ要素へ主キー値の属する型情報を設定するように修正した。 [GitHub#30]</p>
         
     | 
| 
       1020 
1076 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1032,8 +1088,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1032 
1088 
     | 
    
         
             
            </li>
         
     | 
| 
       1033 
1089 
     | 
    
         
             
            </ul>
         
     | 
| 
       1034 
1090 
     | 
    
         
             
            </div>
         
     | 
| 
       1035 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1036 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1091 
     | 
    
         
            +
            <div class="section" id="id55">
         
     | 
| 
      
 1092 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id55" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1037 
1093 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1038 
1094 
     | 
    
         
             
            <li><p class="first">@Kiskeさん</p>
         
     | 
| 
       1039 
1095 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1042,8 +1098,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1042 
1098 
     | 
    
         
             
            </div>
         
     | 
| 
       1043 
1099 
     | 
    
         
             
            <div class="section" id="release-2-0-6-2012-08-29">
         
     | 
| 
       1044 
1100 
     | 
    
         
             
            <span id="release-2-0-6"></span><h2>2.0.6リリース - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1045 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1046 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1101 
     | 
    
         
            +
            <div class="section" id="id56">
         
     | 
| 
      
 1102 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id56" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1047 
1103 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1048 
1104 
     | 
    
         
             
            <li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> メタパッケージを追加。 [#1451]</p>
         
     | 
| 
       1049 
1105 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1079,8 +1135,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1079 
1135 
     | 
    
         
             
            </li>
         
     | 
| 
       1080 
1136 
     | 
    
         
             
            </ul>
         
     | 
| 
       1081 
1137 
     | 
    
         
             
            </div>
         
     | 
| 
       1082 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1083 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1138 
     | 
    
         
            +
            <div class="section" id="id57">
         
     | 
| 
      
 1139 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id57" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1084 
1140 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1085 
1141 
     | 
    
         
             
            <li><p class="first">[doc] チュートリアルの実行例を修正した。 [#1428] [岩井さんが報告]</p>
         
     | 
| 
       1086 
1142 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1099,8 +1155,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1099 
1155 
     | 
    
         
             
            </li>
         
     | 
| 
       1100 
1156 
     | 
    
         
             
            </ul>
         
     | 
| 
       1101 
1157 
     | 
    
         
             
            </div>
         
     | 
| 
       1102 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1103 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1158 
     | 
    
         
            +
            <div class="section" id="id58">
         
     | 
| 
      
 1159 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id58" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1104 
1160 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1105 
1161 
     | 
    
         
             
            <li><p class="first">岩井さん</p>
         
     | 
| 
       1106 
1162 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1111,8 +1167,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1111 
1167 
     | 
    
         
             
            </div>
         
     | 
| 
       1112 
1168 
     | 
    
         
             
            <div class="section" id="release-2-0-5-2012-07-29">
         
     | 
| 
       1113 
1169 
     | 
    
         
             
            <span id="release-2-0-5"></span><h2>2.0.5リリース - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1114 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1115 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1170 
     | 
    
         
            +
            <div class="section" id="id59">
         
     | 
| 
      
 1171 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id59" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1116 
1172 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1117 
1173 
     | 
    
         
             
            <li><p class="first"><tt class="docutils literal"><span class="pre">"rect"</span></tt> もしくは <tt class="docutils literal"><span class="pre">"rectangle"</span></tt> 引数を指定した南半球における距離の計算をサポート。 [#1418] [#1419] [#1420] [#1421]</p>
         
     | 
| 
       1118 
1174 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1152,8 +1208,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1152 
1208 
     | 
    
         
             
            </li>
         
     | 
| 
       1153 
1209 
     | 
    
         
             
            </ul>
         
     | 
| 
       1154 
1210 
     | 
    
         
             
            </div>
         
     | 
| 
       1155 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1156 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1211 
     | 
    
         
            +
            <div class="section" id="id60">
         
     | 
| 
      
 1212 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id60" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1157 
1213 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1158 
1214 
     | 
    
         
             
            <li><p class="first">groonga-httpdが Mac OS Xでビルドできない問題を修正。[島田 浩二さんが報告]</p>
         
     | 
| 
       1159 
1215 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1175,8 +1231,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1175 
1231 
     | 
    
         
             
            </li>
         
     | 
| 
       1176 
1232 
     | 
    
         
             
            </ul>
         
     | 
| 
       1177 
1233 
     | 
    
         
             
            </div>
         
     | 
| 
       1178 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1179 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1234 
     | 
    
         
            +
            <div class="section" id="id61">
         
     | 
| 
      
 1235 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id61" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1180 
1236 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1181 
1237 
     | 
    
         
             
            <li><p class="first">島田 浩二さん</p>
         
     | 
| 
       1182 
1238 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1187,8 +1243,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1187 
1243 
     | 
    
         
             
            </div>
         
     | 
| 
       1188 
1244 
     | 
    
         
             
            <div class="section" id="release-2-0-4-2012-06-29">
         
     | 
| 
       1189 
1245 
     | 
    
         
             
            <span id="release-2-0-4"></span><h2>2.0.4リリース - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1190 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1191 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1246 
     | 
    
         
            +
            <div class="section" id="id62">
         
     | 
| 
      
 1247 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id62" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1192 
1248 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1193 
1249 
     | 
    
         
             
            <li><p class="first">KyTea 0.4.2のみをサポート。</p>
         
     | 
| 
       1194 
1250 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1222,8 +1278,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1222 
1278 
     | 
    
         
             
            </li>
         
     | 
| 
       1223 
1279 
     | 
    
         
             
            </ul>
         
     | 
| 
       1224 
1280 
     | 
    
         
             
            </div>
         
     | 
| 
       1225 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1226 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1281 
     | 
    
         
            +
            <div class="section" id="id63">
         
     | 
| 
      
 1282 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id63" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1227 
1283 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1228 
1284 
     | 
    
         
             
            <li><p class="first">Mac OS Xでバッチモードを使用した際にコマンドプロンプトの表示が意図しない状態になる問題を修正。 [@soundkitchenさんが報告]</p>
         
     | 
| 
       1229 
1285 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1233,8 +1289,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1233 
1289 
     | 
    
         
             
            </li>
         
     | 
| 
       1234 
1290 
     | 
    
         
             
            </ul>
         
     | 
| 
       1235 
1291 
     | 
    
         
             
            </div>
         
     | 
| 
       1236 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1237 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1292 
     | 
    
         
            +
            <div class="section" id="id64">
         
     | 
| 
      
 1293 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id64" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1238 
1294 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1239 
1295 
     | 
    
         
             
            <li><p class="first">@soundkitchenさん</p>
         
     | 
| 
       1240 
1296 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1245,8 +1301,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1245 
1301 
     | 
    
         
             
            </div>
         
     | 
| 
       1246 
1302 
     | 
    
         
             
            <div class="section" id="release-2-0-3-2012-05-29">
         
     | 
| 
       1247 
1303 
     | 
    
         
             
            <span id="release-2-0-3"></span><h2>2.0.3リリース - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1248 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1249 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1304 
     | 
    
         
            +
            <div class="section" id="id65">
         
     | 
| 
      
 1305 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id65" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1250 
1306 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1251 
1307 
     | 
    
         
             
            <li><p class="first">[doc] リリース手順を追加。</p>
         
     | 
| 
       1252 
1308 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1276,8 +1332,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1276 
1332 
     | 
    
         
             
            </li>
         
     | 
| 
       1277 
1333 
     | 
    
         
             
            </ul>
         
     | 
| 
       1278 
1334 
     | 
    
         
             
            </div>
         
     | 
| 
       1279 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1280 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1335 
     | 
    
         
            +
            <div class="section" id="id66">
         
     | 
| 
      
 1336 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id66" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1281 
1337 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1282 
1338 
     | 
    
         
             
            <li><p class="first">[doc] yumリポジトリを更新するためのコマンドを修正。 [岩井さんが提案]</p>
         
     | 
| 
       1283 
1339 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1293,8 +1349,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1293 
1349 
     | 
    
         
             
            </li>
         
     | 
| 
       1294 
1350 
     | 
    
         
             
            </ul>
         
     | 
| 
       1295 
1351 
     | 
    
         
             
            </div>
         
     | 
| 
       1296 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1297 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1352 
     | 
    
         
            +
            <div class="section" id="id67">
         
     | 
| 
      
 1353 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id67" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1298 
1354 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1299 
1355 
     | 
    
         
             
            <li><p class="first">岩井さん</p>
         
     | 
| 
       1300 
1356 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1317,8 +1373,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1317 
1373 
     | 
    
         
             
            </pre></div>
         
     | 
| 
       1318 
1374 
     | 
    
         
             
            </div>
         
     | 
| 
       1319 
1375 
     | 
    
         
             
            </div>
         
     | 
| 
       1320 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1321 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1376 
     | 
    
         
            +
            <div class="section" id="id68">
         
     | 
| 
      
 1377 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id68" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1322 
1378 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1323 
1379 
     | 
    
         
             
            <li><p class="first">[pkg-config] 必要のないMessagePackへの依存関係を削除。</p>
         
     | 
| 
       1324 
1380 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1346,8 +1402,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1346 
1402 
     | 
    
         
             
            </li>
         
     | 
| 
       1347 
1403 
     | 
    
         
             
            </ul>
         
     | 
| 
       1348 
1404 
     | 
    
         
             
            </div>
         
     | 
| 
       1349 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1350 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1405 
     | 
    
         
            +
            <div class="section" id="id69">
         
     | 
| 
      
 1406 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id69" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1351 
1407 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1352 
1408 
     | 
    
         
             
            <li><p class="first">[deb][rpm] 非推奨の <tt class="docutils literal"><span class="pre">--address</span></tt> オプションではなく <tt class="docutils literal"><span class="pre">--bind--address</span></tt> オプションを使用するようにした。[#1320] [IWAI, Masaharuさんがパッチ提供]</p>
         
     | 
| 
       1353 
1409 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1369,8 +1425,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1369 
1425 
     | 
    
         
             
            </li>
         
     | 
| 
       1370 
1426 
     | 
    
         
             
            </ul>
         
     | 
| 
       1371 
1427 
     | 
    
         
             
            </div>
         
     | 
| 
       1372 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1373 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1428 
     | 
    
         
            +
            <div class="section" id="id70">
         
     | 
| 
      
 1429 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id70" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1374 
1430 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1375 
1431 
     | 
    
         
             
            <li><p class="first">岩井さん</p>
         
     | 
| 
       1376 
1432 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1383,8 +1439,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1383 
1439 
     | 
    
         
             
            </div>
         
     | 
| 
       1384 
1440 
     | 
    
         
             
            <div class="section" id="release-2-0-1-2012-03-29">
         
     | 
| 
       1385 
1441 
     | 
    
         
             
            <span id="release-2-0-1"></span><h2>2.0.1リリース - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1386 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1387 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1442 
     | 
    
         
            +
            <div class="section" id="id71">
         
     | 
| 
      
 1443 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id71" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1388 
1444 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1389 
1445 
     | 
    
         
             
            <li><p class="first">別ディレクトリでのビルドをサポートした。 [#1298] [かずひこさんが報告]</p>
         
     | 
| 
       1390 
1446 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1418,8 +1474,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1418 
1474 
     | 
    
         
             
            </li>
         
     | 
| 
       1419 
1475 
     | 
    
         
             
            </ul>
         
     | 
| 
       1420 
1476 
     | 
    
         
             
            </div>
         
     | 
| 
       1421 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1422 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1477 
     | 
    
         
            +
            <div class="section" id="id72">
         
     | 
| 
      
 1478 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id72" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1423 
1479 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1424 
1480 
     | 
    
         
             
            <li><p class="first">インストールしたRubyスクリプトをuninstallでアンインストールできない問題を修正した。 [#1299] [かずひこさんが報告]</p>
         
     | 
| 
       1425 
1481 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1433,8 +1489,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1433 
1489 
     | 
    
         
             
            </li>
         
     | 
| 
       1434 
1490 
     | 
    
         
             
            </ul>
         
     | 
| 
       1435 
1491 
     | 
    
         
             
            </div>
         
     | 
| 
       1436 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1437 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1492 
     | 
    
         
            +
            <div class="section" id="id73">
         
     | 
| 
      
 1493 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id73" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1438 
1494 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1439 
1495 
     | 
    
         
             
            <li><p class="first">かずひこさん</p>
         
     | 
| 
       1440 
1496 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1445,8 +1501,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1445 
1501 
     | 
    
         
             
            </div>
         
     | 
| 
       1446 
1502 
     | 
    
         
             
            <div class="section" id="release-2-0-0-2012-02-29">
         
     | 
| 
       1447 
1503 
     | 
    
         
             
            <span id="release-2-0-0"></span><h2>2.0.0リリース - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1448 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1449 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1504 
     | 
    
         
            +
            <div class="section" id="id74">
         
     | 
| 
      
 1505 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id74" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1450 
1506 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1451 
1507 
     | 
    
         
             
            <li><p class="first">[dat] 長さが0かどうかキーをチェックするようにした。</p>
         
     | 
| 
       1452 
1508 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1484,8 +1540,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1484 
1540 
     | 
    
         
             
            </li>
         
     | 
| 
       1485 
1541 
     | 
    
         
             
            </ul>
         
     | 
| 
       1486 
1542 
     | 
    
         
             
            </div>
         
     | 
| 
       1487 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1488 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 1543 
     | 
    
         
            +
            <div class="section" id="id75">
         
     | 
| 
      
 1544 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id75" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1489 
1545 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1490 
1546 
     | 
    
         
             
            <li><p class="first">[pat] 最後のノードを見つけられない問題を修正した。 [#1258]</p>
         
     | 
| 
       1491 
1547 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1499,8 +1555,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1499 
1555 
     | 
    
         
             
            </li>
         
     | 
| 
       1500 
1556 
     | 
    
         
             
            </ul>
         
     | 
| 
       1501 
1557 
     | 
    
         
             
            </div>
         
     | 
| 
       1502 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1503 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1558 
     | 
    
         
            +
            <div class="section" id="id76">
         
     | 
| 
      
 1559 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id76" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1504 
1560 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1505 
1561 
     | 
    
         
             
            <li><p class="first">鈴木さん</p>
         
     | 
| 
       1506 
1562 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1519,8 +1575,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1519 
1575 
     | 
    
         
             
            </div>
         
     | 
| 
       1520 
1576 
     | 
    
         
             
            <div class="section" id="release-1-3-0-2012-01-29">
         
     | 
| 
       1521 
1577 
     | 
    
         
             
            <span id="release-1-3-0"></span><h2>1.3.0リリース - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       1522 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1523 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 1578 
     | 
    
         
            +
            <div class="section" id="id77">
         
     | 
| 
      
 1579 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id77" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1524 
1580 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1525 
1581 
     | 
    
         
             
            <li><p class="first">GRN_DB_KEY=patまたはGRN_DB_KEY=dat環境変数値による動的なDBのキー管理テーブルの変更をサポート。</p>
         
     | 
| 
       1526 
1582 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1572,8 +1628,8 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1572 
1628 
     | 
    
         
             
            </li>
         
     | 
| 
       1573 
1629 
     | 
    
         
             
            </ul>
         
     | 
| 
       1574 
1630 
     | 
    
         
             
            </div>
         
     | 
| 
       1575 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       1576 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 1631 
     | 
    
         
            +
            <div class="section" id="id78">
         
     | 
| 
      
 1632 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id78" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       1577 
1633 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       1578 
1634 
     | 
    
         
             
            <li><p class="first">montywiさん</p>
         
     | 
| 
       1579 
1635 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -1696,166 +1752,172 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1696 
1752 
     | 
    
         
             
              <h3><a href="index.html">目次</a></h3>
         
     | 
| 
       1697 
1753 
     | 
    
         
             
              <ul>
         
     | 
| 
       1698 
1754 
     | 
    
         
             
            <li><a class="reference internal" href="#">お知らせ</a><ul>
         
     | 
| 
       1699 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-4-0- 
     | 
| 
      
 1755 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-1-2014-03-29">4.0.1リリース - 2014/03/29</a><ul>
         
     | 
| 
       1700 
1756 
     | 
    
         
             
            <li><a class="reference internal" href="#improvements">改良</a></li>
         
     | 
| 
       1701 
1757 
     | 
    
         
             
            <li><a class="reference internal" href="#fixes">修正</a></li>
         
     | 
| 
       1702 
1758 
     | 
    
         
             
            <li><a class="reference internal" href="#thanks">感謝</a></li>
         
     | 
| 
       1703 
1759 
     | 
    
         
             
            </ul>
         
     | 
| 
       1704 
1760 
     | 
    
         
             
            </li>
         
     | 
| 
       1705 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
      
 1761 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-4-0-0-2014-02-09">4.0.0リリース - 2014/02/09</a><ul>
         
     | 
| 
       1706 
1762 
     | 
    
         
             
            <li><a class="reference internal" href="#id1">改良</a></li>
         
     | 
| 
       1707 
1763 
     | 
    
         
             
            <li><a class="reference internal" href="#id2">修正</a></li>
         
     | 
| 
       1708 
1764 
     | 
    
         
             
            <li><a class="reference internal" href="#id3">感謝</a></li>
         
     | 
| 
       1709 
1765 
     | 
    
         
             
            </ul>
         
     | 
| 
       1710 
1766 
     | 
    
         
             
            </li>
         
     | 
| 
       1711 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-1- 
     | 
| 
      
 1767 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-2-2014-01-29">3.1.2リリース - 2014/01/29</a><ul>
         
     | 
| 
       1712 
1768 
     | 
    
         
             
            <li><a class="reference internal" href="#id4">改良</a></li>
         
     | 
| 
       1713 
1769 
     | 
    
         
             
            <li><a class="reference internal" href="#id5">修正</a></li>
         
     | 
| 
       1714 
1770 
     | 
    
         
             
            <li><a class="reference internal" href="#id6">感謝</a></li>
         
     | 
| 
       1715 
1771 
     | 
    
         
             
            </ul>
         
     | 
| 
       1716 
1772 
     | 
    
         
             
            </li>
         
     | 
| 
       1717 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-1- 
     | 
| 
      
 1773 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-1-2013-12-29">3.1.1リリース - 2013/12/29</a><ul>
         
     | 
| 
       1718 
1774 
     | 
    
         
             
            <li><a class="reference internal" href="#id7">改良</a></li>
         
     | 
| 
       1719 
1775 
     | 
    
         
             
            <li><a class="reference internal" href="#id8">修正</a></li>
         
     | 
| 
       1720 
1776 
     | 
    
         
             
            <li><a class="reference internal" href="#id9">感謝</a></li>
         
     | 
| 
       1721 
1777 
     | 
    
         
             
            </ul>
         
     | 
| 
       1722 
1778 
     | 
    
         
             
            </li>
         
     | 
| 
       1723 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1779 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-0-2013-11-29">3.1.0リリース - 2013/11/29</a><ul>
         
     | 
| 
       1724 
1780 
     | 
    
         
             
            <li><a class="reference internal" href="#id10">改良</a></li>
         
     | 
| 
       1725 
1781 
     | 
    
         
             
            <li><a class="reference internal" href="#id11">修正</a></li>
         
     | 
| 
       1726 
1782 
     | 
    
         
             
            <li><a class="reference internal" href="#id12">感謝</a></li>
         
     | 
| 
       1727 
1783 
     | 
    
         
             
            </ul>
         
     | 
| 
       1728 
1784 
     | 
    
         
             
            </li>
         
     | 
| 
       1729 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1785 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-9-2013-10-29">3.0.9リリース - 2013/10/29</a><ul>
         
     | 
| 
       1730 
1786 
     | 
    
         
             
            <li><a class="reference internal" href="#id13">改良</a></li>
         
     | 
| 
       1731 
1787 
     | 
    
         
             
            <li><a class="reference internal" href="#id14">修正</a></li>
         
     | 
| 
       1732 
1788 
     | 
    
         
             
            <li><a class="reference internal" href="#id15">感謝</a></li>
         
     | 
| 
       1733 
1789 
     | 
    
         
             
            </ul>
         
     | 
| 
       1734 
1790 
     | 
    
         
             
            </li>
         
     | 
| 
       1735 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1791 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-8-2013-09-29">3.0.8リリース - 2013/09/29</a><ul>
         
     | 
| 
       1736 
1792 
     | 
    
         
             
            <li><a class="reference internal" href="#id16">改良</a></li>
         
     | 
| 
       1737 
1793 
     | 
    
         
             
            <li><a class="reference internal" href="#id17">修正</a></li>
         
     | 
| 
       1738 
1794 
     | 
    
         
             
            <li><a class="reference internal" href="#id18">感謝</a></li>
         
     | 
| 
       1739 
1795 
     | 
    
         
             
            </ul>
         
     | 
| 
       1740 
1796 
     | 
    
         
             
            </li>
         
     | 
| 
       1741 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1797 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-7-2013-08-29">3.0.7リリース - 2013/08/29</a><ul>
         
     | 
| 
       1742 
1798 
     | 
    
         
             
            <li><a class="reference internal" href="#id19">改良</a></li>
         
     | 
| 
       1743 
1799 
     | 
    
         
             
            <li><a class="reference internal" href="#id20">修正</a></li>
         
     | 
| 
       1744 
1800 
     | 
    
         
             
            <li><a class="reference internal" href="#id21">感謝</a></li>
         
     | 
| 
       1745 
1801 
     | 
    
         
             
            </ul>
         
     | 
| 
       1746 
1802 
     | 
    
         
             
            </li>
         
     | 
| 
       1747 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1803 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-6-2013-07-29">3.0.6リリース - 2013/07/29</a><ul>
         
     | 
| 
       1748 
1804 
     | 
    
         
             
            <li><a class="reference internal" href="#id22">改良</a></li>
         
     | 
| 
       1749 
1805 
     | 
    
         
             
            <li><a class="reference internal" href="#id23">修正</a></li>
         
     | 
| 
       1750 
1806 
     | 
    
         
             
            <li><a class="reference internal" href="#id24">感謝</a></li>
         
     | 
| 
       1751 
1807 
     | 
    
         
             
            </ul>
         
     | 
| 
       1752 
1808 
     | 
    
         
             
            </li>
         
     | 
| 
       1753 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1809 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-5-2013-06-29">3.0.5リリース - 2013/06/29</a><ul>
         
     | 
| 
       1754 
1810 
     | 
    
         
             
            <li><a class="reference internal" href="#id25">改良</a></li>
         
     | 
| 
       1755 
1811 
     | 
    
         
             
            <li><a class="reference internal" href="#id26">修正</a></li>
         
     | 
| 
       1756 
1812 
     | 
    
         
             
            <li><a class="reference internal" href="#id27">感謝</a></li>
         
     | 
| 
       1757 
1813 
     | 
    
         
             
            </ul>
         
     | 
| 
       1758 
1814 
     | 
    
         
             
            </li>
         
     | 
| 
       1759 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1815 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-4-2013-05-29">3.0.4リリース - 2013/05/29</a><ul>
         
     | 
| 
       1760 
1816 
     | 
    
         
             
            <li><a class="reference internal" href="#id28">改良</a></li>
         
     | 
| 
      
 1817 
     | 
    
         
            +
            <li><a class="reference internal" href="#id29">修正</a></li>
         
     | 
| 
      
 1818 
     | 
    
         
            +
            <li><a class="reference internal" href="#id30">感謝</a></li>
         
     | 
| 
       1761 
1819 
     | 
    
         
             
            </ul>
         
     | 
| 
       1762 
1820 
     | 
    
         
             
            </li>
         
     | 
| 
       1763 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
       1764 
     | 
    
         
            -
            <li><a class="reference internal" href="# 
     | 
| 
       1765 
     | 
    
         
            -
            <li><a class="reference internal" href="#id30">修正</a></li>
         
     | 
| 
       1766 
     | 
    
         
            -
            <li><a class="reference internal" href="#id31">感謝</a></li>
         
     | 
| 
      
 1821 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-3-2013-04-29">3.0.3リリース - 2013/04/29</a><ul>
         
     | 
| 
      
 1822 
     | 
    
         
            +
            <li><a class="reference internal" href="#id31">改良</a></li>
         
     | 
| 
       1767 
1823 
     | 
    
         
             
            </ul>
         
     | 
| 
       1768 
1824 
     | 
    
         
             
            </li>
         
     | 
| 
       1769 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
      
 1825 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-2-2013-03-29">3.0.2リリース - 2013/03/29</a><ul>
         
     | 
| 
       1770 
1826 
     | 
    
         
             
            <li><a class="reference internal" href="#id32">改良</a></li>
         
     | 
| 
       1771 
1827 
     | 
    
         
             
            <li><a class="reference internal" href="#id33">修正</a></li>
         
     | 
| 
       1772 
1828 
     | 
    
         
             
            <li><a class="reference internal" href="#id34">感謝</a></li>
         
     | 
| 
       1773 
1829 
     | 
    
         
             
            </ul>
         
     | 
| 
       1774 
1830 
     | 
    
         
             
            </li>
         
     | 
| 
       1775 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-3-0- 
     | 
| 
       1776 
     | 
    
         
            -
            <li><a class="reference internal" href="#id35" 
     | 
| 
       1777 
     | 
    
         
            -
            <li><a class="reference internal" href="#id36" 
     | 
| 
      
 1831 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-1-2013-02-28">3.0.1リリース - 2013/02/28</a><ul>
         
     | 
| 
      
 1832 
     | 
    
         
            +
            <li><a class="reference internal" href="#id35">改良</a></li>
         
     | 
| 
      
 1833 
     | 
    
         
            +
            <li><a class="reference internal" href="#id36">修正</a></li>
         
     | 
| 
      
 1834 
     | 
    
         
            +
            <li><a class="reference internal" href="#id37">感謝</a></li>
         
     | 
| 
       1778 
1835 
     | 
    
         
             
            </ul>
         
     | 
| 
       1779 
1836 
     | 
    
         
             
            </li>
         
     | 
| 
       1780 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
       1781 
     | 
    
         
            -
            <li><a class="reference internal" href="#id37">改良</a></li>
         
     | 
| 
      
 1837 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-0-2013-02-09">3.0.0リリース - 2013/02/09</a><ul>
         
     | 
| 
       1782 
1838 
     | 
    
         
             
            <li><a class="reference internal" href="#id38">修正</a></li>
         
     | 
| 
       1783 
1839 
     | 
    
         
             
            <li><a class="reference internal" href="#id39">感謝</a></li>
         
     | 
| 
       1784 
1840 
     | 
    
         
             
            </ul>
         
     | 
| 
       1785 
1841 
     | 
    
         
             
            </li>
         
     | 
| 
       1786 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-1- 
     | 
| 
       1787 
     | 
    
         
            -
            <li><a class="reference internal" href="#id40" 
     | 
| 
      
 1842 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-2-2013-01-29">2.1.2リリース - 2013/01/29</a><ul>
         
     | 
| 
      
 1843 
     | 
    
         
            +
            <li><a class="reference internal" href="#id40">改良</a></li>
         
     | 
| 
      
 1844 
     | 
    
         
            +
            <li><a class="reference internal" href="#id41">修正</a></li>
         
     | 
| 
      
 1845 
     | 
    
         
            +
            <li><a class="reference internal" href="#id42">感謝</a></li>
         
     | 
| 
       1788 
1846 
     | 
    
         
             
            </ul>
         
     | 
| 
       1789 
1847 
     | 
    
         
             
            </li>
         
     | 
| 
       1790 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-1- 
     | 
| 
       1791 
     | 
    
         
            -
            <li><a class="reference internal" href="# 
     | 
| 
       1792 
     | 
    
         
            -
            <li><a class="reference internal" href="#id42">修正</a></li>
         
     | 
| 
       1793 
     | 
    
         
            -
            <li><a class="reference internal" href="#id43">感謝</a></li>
         
     | 
| 
      
 1848 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-1-2012-12-29">2.1.1リリース - 2012/12/29</a><ul>
         
     | 
| 
      
 1849 
     | 
    
         
            +
            <li><a class="reference internal" href="#id43">修正</a></li>
         
     | 
| 
       1794 
1850 
     | 
    
         
             
            </ul>
         
     | 
| 
       1795 
1851 
     | 
    
         
             
            </li>
         
     | 
| 
       1796 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1852 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-1-0-2012-12-29">2.1.0リリース - 2012/12/29</a><ul>
         
     | 
| 
       1797 
1853 
     | 
    
         
             
            <li><a class="reference internal" href="#id44">改良</a></li>
         
     | 
| 
       1798 
1854 
     | 
    
         
             
            <li><a class="reference internal" href="#id45">修正</a></li>
         
     | 
| 
       1799 
1855 
     | 
    
         
             
            <li><a class="reference internal" href="#id46">感謝</a></li>
         
     | 
| 
       1800 
1856 
     | 
    
         
             
            </ul>
         
     | 
| 
       1801 
1857 
     | 
    
         
             
            </li>
         
     | 
| 
       1802 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1858 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-9-2012-11-29">2.0.9リリース - 2012/11/29</a><ul>
         
     | 
| 
       1803 
1859 
     | 
    
         
             
            <li><a class="reference internal" href="#id47">改良</a></li>
         
     | 
| 
       1804 
1860 
     | 
    
         
             
            <li><a class="reference internal" href="#id48">修正</a></li>
         
     | 
| 
       1805 
1861 
     | 
    
         
             
            <li><a class="reference internal" href="#id49">感謝</a></li>
         
     | 
| 
       1806 
1862 
     | 
    
         
             
            </ul>
         
     | 
| 
       1807 
1863 
     | 
    
         
             
            </li>
         
     | 
| 
       1808 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1864 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-8-2012-10-29">2.0.8リリース - 2012/10/29</a><ul>
         
     | 
| 
       1809 
1865 
     | 
    
         
             
            <li><a class="reference internal" href="#id50">改良</a></li>
         
     | 
| 
       1810 
1866 
     | 
    
         
             
            <li><a class="reference internal" href="#id51">修正</a></li>
         
     | 
| 
       1811 
1867 
     | 
    
         
             
            <li><a class="reference internal" href="#id52">感謝</a></li>
         
     | 
| 
       1812 
1868 
     | 
    
         
             
            </ul>
         
     | 
| 
       1813 
1869 
     | 
    
         
             
            </li>
         
     | 
| 
       1814 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1870 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-7-2012-09-29">2.0.7リリース - 2012/09/29</a><ul>
         
     | 
| 
       1815 
1871 
     | 
    
         
             
            <li><a class="reference internal" href="#id53">改良</a></li>
         
     | 
| 
       1816 
1872 
     | 
    
         
             
            <li><a class="reference internal" href="#id54">修正</a></li>
         
     | 
| 
       1817 
1873 
     | 
    
         
             
            <li><a class="reference internal" href="#id55">感謝</a></li>
         
     | 
| 
       1818 
1874 
     | 
    
         
             
            </ul>
         
     | 
| 
       1819 
1875 
     | 
    
         
             
            </li>
         
     | 
| 
       1820 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1876 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-6-2012-08-29">2.0.6リリース - 2012/08/29</a><ul>
         
     | 
| 
       1821 
1877 
     | 
    
         
             
            <li><a class="reference internal" href="#id56">改良</a></li>
         
     | 
| 
       1822 
1878 
     | 
    
         
             
            <li><a class="reference internal" href="#id57">修正</a></li>
         
     | 
| 
       1823 
1879 
     | 
    
         
             
            <li><a class="reference internal" href="#id58">感謝</a></li>
         
     | 
| 
       1824 
1880 
     | 
    
         
             
            </ul>
         
     | 
| 
       1825 
1881 
     | 
    
         
             
            </li>
         
     | 
| 
       1826 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1882 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-5-2012-07-29">2.0.5リリース - 2012/07/29</a><ul>
         
     | 
| 
       1827 
1883 
     | 
    
         
             
            <li><a class="reference internal" href="#id59">改良</a></li>
         
     | 
| 
       1828 
1884 
     | 
    
         
             
            <li><a class="reference internal" href="#id60">修正</a></li>
         
     | 
| 
       1829 
1885 
     | 
    
         
             
            <li><a class="reference internal" href="#id61">感謝</a></li>
         
     | 
| 
       1830 
1886 
     | 
    
         
             
            </ul>
         
     | 
| 
       1831 
1887 
     | 
    
         
             
            </li>
         
     | 
| 
       1832 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1888 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-4-2012-06-29">2.0.4リリース - 2012/06/29</a><ul>
         
     | 
| 
       1833 
1889 
     | 
    
         
             
            <li><a class="reference internal" href="#id62">改良</a></li>
         
     | 
| 
       1834 
1890 
     | 
    
         
             
            <li><a class="reference internal" href="#id63">修正</a></li>
         
     | 
| 
       1835 
1891 
     | 
    
         
             
            <li><a class="reference internal" href="#id64">感謝</a></li>
         
     | 
| 
       1836 
1892 
     | 
    
         
             
            </ul>
         
     | 
| 
       1837 
1893 
     | 
    
         
             
            </li>
         
     | 
| 
       1838 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1894 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-3-2012-05-29">2.0.3リリース - 2012/05/29</a><ul>
         
     | 
| 
       1839 
1895 
     | 
    
         
             
            <li><a class="reference internal" href="#id65">改良</a></li>
         
     | 
| 
       1840 
1896 
     | 
    
         
             
            <li><a class="reference internal" href="#id66">修正</a></li>
         
     | 
| 
       1841 
1897 
     | 
    
         
             
            <li><a class="reference internal" href="#id67">感謝</a></li>
         
     | 
| 
       1842 
1898 
     | 
    
         
             
            </ul>
         
     | 
| 
       1843 
1899 
     | 
    
         
             
            </li>
         
     | 
| 
       1844 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1900 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-2-2012-04-29">2.0.2リリース - 2012/04/29</a><ul>
         
     | 
| 
       1845 
1901 
     | 
    
         
             
            <li><a class="reference internal" href="#id68">改良</a></li>
         
     | 
| 
       1846 
1902 
     | 
    
         
             
            <li><a class="reference internal" href="#id69">修正</a></li>
         
     | 
| 
       1847 
1903 
     | 
    
         
             
            <li><a class="reference internal" href="#id70">感謝</a></li>
         
     | 
| 
       1848 
1904 
     | 
    
         
             
            </ul>
         
     | 
| 
       1849 
1905 
     | 
    
         
             
            </li>
         
     | 
| 
       1850 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-2-0- 
     | 
| 
      
 1906 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-1-2012-03-29">2.0.1リリース - 2012/03/29</a><ul>
         
     | 
| 
       1851 
1907 
     | 
    
         
             
            <li><a class="reference internal" href="#id71">改良</a></li>
         
     | 
| 
       1852 
1908 
     | 
    
         
             
            <li><a class="reference internal" href="#id72">修正</a></li>
         
     | 
| 
       1853 
1909 
     | 
    
         
             
            <li><a class="reference internal" href="#id73">感謝</a></li>
         
     | 
| 
       1854 
1910 
     | 
    
         
             
            </ul>
         
     | 
| 
       1855 
1911 
     | 
    
         
             
            </li>
         
     | 
| 
       1856 
     | 
    
         
            -
            <li><a class="reference internal" href="#release- 
     | 
| 
      
 1912 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-2-0-0-2012-02-29">2.0.0リリース - 2012/02/29</a><ul>
         
     | 
| 
       1857 
1913 
     | 
    
         
             
            <li><a class="reference internal" href="#id74">改良</a></li>
         
     | 
| 
       1858 
     | 
    
         
            -
            <li><a class="reference internal" href="#id75" 
     | 
| 
      
 1914 
     | 
    
         
            +
            <li><a class="reference internal" href="#id75">修正</a></li>
         
     | 
| 
      
 1915 
     | 
    
         
            +
            <li><a class="reference internal" href="#id76">感謝</a></li>
         
     | 
| 
      
 1916 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1917 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1918 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-1-3-0-2012-01-29">1.3.0リリース - 2012/01/29</a><ul>
         
     | 
| 
      
 1919 
     | 
    
         
            +
            <li><a class="reference internal" href="#id77">改良</a></li>
         
     | 
| 
      
 1920 
     | 
    
         
            +
            <li><a class="reference internal" href="#id78">感謝</a></li>
         
     | 
| 
       1859 
1921 
     | 
    
         
             
            </ul>
         
     | 
| 
       1860 
1922 
     | 
    
         
             
            </li>
         
     | 
| 
       1861 
1923 
     | 
    
         
             
            <li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
         
     | 
| 
         @@ -1893,7 +1955,7 @@ This change not to contain such a metadata as search results.</li> 
     | 
|
| 
       1893 
1955 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       1894 
1956 
     | 
    
         
             
                      <a href="genindex.html" title="総合索引"
         
     | 
| 
       1895 
1957 
     | 
    
         
             
                         >索引</a></li>
         
     | 
| 
       1896 
     | 
    
         
            -
                    <li><a href="index.html">Groonga  
     | 
| 
      
 1958 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v4.0.1ドキュメント</a> »</li> 
         
     | 
| 
       1897 
1959 
     | 
    
         
             
                  </ul>
         
     | 
| 
       1898 
1960 
     | 
    
         
             
                </div>
         
     | 
| 
       1899 
1961 
     | 
    
         
             
                <div class="footer" role="contentinfo">
         
     |