rroonga 5.0.4-x86-mingw32 → 5.0.5-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 +8 -8
 - data/README.md +2 -2
 - data/example/measure-data-column-disk-usage.rb +124 -0
 - data/example/measure-index-column-disk-usage.rb +81 -0
 - data/example/measure-table-disk-usage.rb +100 -0
 - data/ext/groonga/rb-grn-database.c +31 -0
 - data/ext/groonga/rb-grn-double-array-trie.c +1 -8
 - data/ext/groonga/rb-grn-logger.c +45 -0
 - data/ext/groonga/rb-grn-object.c +29 -1
 - data/ext/groonga/rb-grn-patricia-trie.c +1 -8
 - data/ext/groonga/rb-grn-table-cursor.c +8 -3
 - data/ext/groonga/rb-grn-table.c +10 -5
 - data/ext/groonga/rb-grn-thread.c +160 -0
 - data/ext/groonga/rb-grn-windows-event-logger.c +79 -0
 - data/ext/groonga/rb-grn.h +3 -1
 - data/ext/groonga/rb-groonga.c +3 -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/2.2/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +6 -1
 - data/rroonga-build.rb +4 -4
 - data/test/groonga-test-utils.rb +5 -1
 - data/test/test-database.rb +11 -0
 - data/test/test-logger.rb +6 -0
 - data/test/test-operator.rb +6 -6
 - data/test/test-procedure.rb +15 -0
 - data/test/test-table-dumper.rb +170 -1
 - data/test/test-thread.rb +42 -0
 - data/test/test-windows-event-logger.rb +28 -0
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-4.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libonig-5.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/libwinpthread-1.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/etc/groonga/windows_event_log/provider.man +38 -0
 - data/vendor/local/include/groonga/groonga.h +2 -0
 - data/vendor/local/include/groonga/groonga/command.h +2 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +5 -0
 - data/vendor/local/include/groonga/groonga/obj.h +1 -0
 - data/vendor/local/include/groonga/groonga/portability.h +16 -0
 - data/vendor/local/include/groonga/groonga/thread.h +42 -0
 - data/vendor/local/include/groonga/groonga/windows_event_logger.h +33 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.la +2 -2
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
 - data/vendor/local/lib/groonga/plugins/sharding.rb +5 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +43 -6
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +32 -25
 - data/vendor/local/lib/groonga/plugins/sharding/logical_parameters.rb +44 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +217 -49
 - data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +507 -45
 - data/vendor/local/lib/groonga/plugins/sharding/logical_shard_list.rb +28 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +11 -6
 - data/vendor/local/lib/groonga/plugins/sharding/parameters.rb +10 -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/suggest/suggest.la +2 -2
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/command.rb +31 -1
 - data/vendor/local/lib/groonga/scripts/ruby/context.rb +18 -2
 - data/vendor/local/lib/groonga/scripts/ruby/database.rb +12 -4
 - data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +31 -28
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +1 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger/level.rb +4 -2
 - data/vendor/local/lib/groonga/scripts/ruby/query_logger.rb +9 -0
 - data/vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb +39 -0
 - data/vendor/local/lib/groonga/scripts/ruby/record.rb +12 -0
 - data/vendor/local/lib/groonga/scripts/ruby/table.rb +35 -1
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +2 -2
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +2 -2
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/libonig.a +0 -0
 - data/vendor/local/lib/libonig.dll.a +0 -0
 - data/vendor/local/lib/libonig.la +2 -2
 - data/vendor/local/lib/libz.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
 - data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
 - data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
 - data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/sbin/groonga-httpd-restart +1 -1
 - data/vendor/local/sbin/groonga-httpd.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build.txt +19 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +16 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +7 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt +4 -0
 - 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 +4 -4
 - 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 +4 -4
 - 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 -4
 - 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 +319 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_db.txt +23 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_thread.txt +122 -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_copy.txt +381 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +85 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +218 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +138 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +97 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +745 -23
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +107 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +90 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +240 -56
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +33 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt +90 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +110 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +3 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +3 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +2 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +108 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +0 -21
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/tuning.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +24 -18
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +19 -19
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
 - data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +27 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -9404
 - data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +31 -1415
 - data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/client.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/community.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +78 -70
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +30 -27
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +146 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +237 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +227 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +231 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +37 -35
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +54 -52
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +80 -78
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +135 -122
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +38 -34
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +58 -54
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/development.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +48 -20
 - data/vendor/local/share/doc/groonga/en/html/index.html +123 -105
 - data/vendor/local/share/doc/groonga/en/html/install.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +32 -30
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +31 -29
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +92 -90
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +29 -28
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/news.html +509 -142
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +110 -108
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +73 -71
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +111 -109
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +111 -94
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +55 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +51 -49
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +63 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +84 -82
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +89 -87
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +88 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +83 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +44 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +93 -91
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +79 -77
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +69 -67
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +296 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +38 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +51 -49
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +60 -58
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +72 -70
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +70 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +100 -98
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +796 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +96 -94
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +67 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +236 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +63 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +281 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +66 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +53 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +78 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +283 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +160 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +2071 -83
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +287 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +71 -68
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +86 -84
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +52 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +227 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +57 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +53 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +56 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +75 -74
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +898 -647
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +50 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +87 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +175 -152
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +327 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +77 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +241 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +108 -106
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +56 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +56 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +83 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +40 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +84 -82
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +47 -45
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +85 -83
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +66 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +54 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +244 -242
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +327 -325
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +107 -103
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +50 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +41 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +241 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +56 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +341 -289
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +68 -66
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +37 -35
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +39 -37
 - data/vendor/local/share/doc/groonga/en/html/spec.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +129 -127
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +29 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +46 -39
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +65 -63
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build.txt +19 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +16 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +7 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt +4 -0
 - 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 +4 -4
 - 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 +4 -4
 - 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 -4
 - 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 +319 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt +23 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_thread.txt +122 -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_copy.txt +381 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +85 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +218 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +138 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +97 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +745 -23
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +107 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +90 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +240 -56
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +33 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt +90 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +110 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +3 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +3 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +2 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +108 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +0 -21
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tuning.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +24 -18
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +19 -19
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
 - data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +27 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -9404
 - data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +31 -1415
 - data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/client.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/community.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +77 -69
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +30 -27
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +144 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +226 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +215 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +229 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +53 -51
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +79 -77
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +134 -121
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +57 -53
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/development.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +48 -20
 - data/vendor/local/share/doc/groonga/ja/html/index.html +122 -104
 - data/vendor/local/share/doc/groonga/ja/html/install.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +83 -81
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +30 -29
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/news.html +460 -126
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +102 -100
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +66 -64
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +91 -89
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +111 -94
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +55 -52
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +51 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +58 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +84 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +41 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +85 -83
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +88 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +78 -76
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +44 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +93 -91
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +79 -77
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +69 -67
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +286 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +60 -58
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +61 -59
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +70 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +49 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +99 -97
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +41 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +49 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +781 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +88 -86
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +66 -63
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +229 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +58 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +63 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +266 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +53 -52
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +78 -75
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +276 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +158 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +2008 -80
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +285 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +71 -68
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +82 -79
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +220 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +53 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +51 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +68 -67
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +680 -448
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +84 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +146 -126
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +55 -53
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +322 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +73 -70
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +229 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +94 -91
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +56 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +56 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +39 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +73 -72
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +40 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +84 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +69 -67
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +56 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +143 -141
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +236 -234
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +39 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +42 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +91 -88
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +50 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +41 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +223 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +303 -243
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +42 -40
 - data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +128 -126
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +29 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +46 -39
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +66 -64
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
 - data/vendor/local/share/license/groonga/README.md +6 -0
 - data/vendor/local/share/license/mruby/AUTHORS +1 -0
 - data/vendor/local/share/license/mruby/MITL +1 -1
 - data/vendor/local/share/license/mruby/README.md +6 -5
 - data/vendor/local/share/license/msgpack/README +219 -0
 - data/vendor/local/share/man/ja/man1/groonga.1 +23512 -15126
 - data/vendor/local/share/man/man1/groonga.1 +26542 -17745
 - metadata +77 -3
 - data/vendor/local/share/license/msgpack/AUTHORS +0 -0
 
    
        data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt
    ADDED
    
    | 
         @@ -0,0 +1,107 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .. -*- rst -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            .. highlightlang:: none
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 6 
     | 
    
         
            +
            .. database: commands_logical_shard_list
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            ``logical_shard_list``
         
     | 
| 
      
 9 
     | 
    
         
            +
            ======================
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            Summary
         
     | 
| 
      
 12 
     | 
    
         
            +
            -------
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            .. note::
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
               This command is an experimental feature.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            .. versionadded:: 5.0.7
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            ``logical_shard_list`` returns all existing shard names against the
         
     | 
| 
      
 21 
     | 
    
         
            +
            specified logical table name.
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            Syntax
         
     | 
| 
      
 24 
     | 
    
         
            +
            ------
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            This command takes only one required parameter::
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
              logical_shard_list logical_table
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            Usage
         
     | 
| 
      
 31 
     | 
    
         
            +
            -----
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            You need to register ``sharding`` plugin to use this command:
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 36 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/logical_shard_list/usage_register.log
         
     | 
| 
      
 37 
     | 
    
         
            +
            .. plugin_register sharding
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            Here are sample shards:
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 42 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/logical_shard_list/usage_shards.log
         
     | 
| 
      
 43 
     | 
    
         
            +
            .. table_create  Logs_20150801           TABLE_HASH_KEY ShortText
         
     | 
| 
      
 44 
     | 
    
         
            +
            .. column_create Logs_20150801 timestamp COLUMN_SCALAR  Time
         
     | 
| 
      
 45 
     | 
    
         
            +
            .. table_create  Logs_20150802           TABLE_HASH_KEY ShortText
         
     | 
| 
      
 46 
     | 
    
         
            +
            .. column_create Logs_20150802 timestamp COLUMN_SCALAR  Time
         
     | 
| 
      
 47 
     | 
    
         
            +
            .. table_create  Logs_20150930           TABLE_HASH_KEY ShortText
         
     | 
| 
      
 48 
     | 
    
         
            +
            .. column_create Logs_20150930 timestamp COLUMN_SCALAR  Time
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            You can get the all shard names in ascending order by specifying
         
     | 
| 
      
 51 
     | 
    
         
            +
            ``Logs`` as the logical table name:
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 54 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/logical_shard_list/usage_list.log
         
     | 
| 
      
 55 
     | 
    
         
            +
            .. logical_shard_list --logical_table Logs
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            Parameters
         
     | 
| 
      
 59 
     | 
    
         
            +
            ----------
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            This section describes parameters.
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            Required parameters
         
     | 
| 
      
 64 
     | 
    
         
            +
            ^^^^^^^^^^^^^^^^^^^
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            There is one required parameter.
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
            .. _logical-shard-logical-table:
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            ``logical_table``
         
     | 
| 
      
 71 
     | 
    
         
            +
            """""""""""""""""
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            Specifies the logical table name. ``logical_shard_list`` returns a
         
     | 
| 
      
 74 
     | 
    
         
            +
            list of shard name of the logical table:
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 77 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/logical_shard_list/logical_table.log
         
     | 
| 
      
 78 
     | 
    
         
            +
            .. logical_shard_list --logical_table Logs
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
            The list is sorted by shard name in ascending order.
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
            Optional parameters
         
     | 
| 
      
 83 
     | 
    
         
            +
            ^^^^^^^^^^^^^^^^^^^
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            There is no optional parameters.
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
            Return value
         
     | 
| 
      
 88 
     | 
    
         
            +
            ------------
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            The command returns a list of shard names in ascending order::
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
              [
         
     | 
| 
      
 93 
     | 
    
         
            +
                HEADER,
         
     | 
| 
      
 94 
     | 
    
         
            +
                [
         
     | 
| 
      
 95 
     | 
    
         
            +
                  {"name": "SHARD_NAME_1"},
         
     | 
| 
      
 96 
     | 
    
         
            +
                  {"name": "SHARD_NAME_2"},
         
     | 
| 
      
 97 
     | 
    
         
            +
                  ...
         
     | 
| 
      
 98 
     | 
    
         
            +
                  {"name": "SHARD_NAME_N"}
         
     | 
| 
      
 99 
     | 
    
         
            +
                ]
         
     | 
| 
      
 100 
     | 
    
         
            +
              ]
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
            See :doc:`/reference/command/output_format` for ``HEADER``.
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            See also
         
     | 
| 
      
 105 
     | 
    
         
            +
            --------
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
              * :doc:`/reference/sharding`
         
     | 
    
        data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt
    CHANGED
    
    | 
         @@ -22,7 +22,7 @@ TODO 
     | 
|
| 
       22 
22 
     | 
    
         
             
            Syntax
         
     | 
| 
       23 
23 
     | 
    
         
             
            ------
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
      
 25 
     | 
    
         
            +
            This command takes many parameters.
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
            The required parameters are ``logical_table`` and ``shard_key``::
         
     | 
| 
       28 
28 
     | 
    
         | 
| 
         @@ -89,6 +89,8 @@ Specify ``include`` or ``exclude`` as the value of this parameter. 
     | 
|
| 
       89 
89 
     | 
    
         
             
            Return value
         
     | 
| 
       90 
90 
     | 
    
         
             
            ------------
         
     | 
| 
       91 
91 
     | 
    
         | 
| 
      
 92 
     | 
    
         
            +
            TODO
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
       92 
94 
     | 
    
         
             
            ::
         
     | 
| 
       93 
95 
     | 
    
         | 
| 
       94 
96 
     | 
    
         
             
              [HEADER, true]
         
     | 
| 
         @@ -25,10 +25,9 @@ It is useful for you to check the results of normalizer. 
     | 
|
| 
       25 
25 
     | 
    
         
             
            Syntax
         
     | 
| 
       26 
26 
     | 
    
         
             
            --------
         
     | 
| 
       27 
27 
     | 
    
         | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
            ``normalizer`` and ``string``.
         
     | 
| 
      
 28 
     | 
    
         
            +
            This command takes three parameters.
         
     | 
| 
       30 
29 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
            ::
         
     | 
| 
      
 30 
     | 
    
         
            +
            ``normalizer`` and ``string`` are required. Others are optional::
         
     | 
| 
       32 
31 
     | 
    
         | 
| 
       33 
32 
     | 
    
         
             
              normalize normalizer
         
     | 
| 
       34 
33 
     | 
    
         
             
                        string
         
     | 
| 
         @@ -0,0 +1,90 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .. -*- rst -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            .. highlightlang:: none
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 6 
     | 
    
         
            +
            .. database: commands_object_exist
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            ``object_exist``
         
     | 
| 
      
 9 
     | 
    
         
            +
            ================
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            Summary
         
     | 
| 
      
 12 
     | 
    
         
            +
            -------
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            .. versionadded:: 5.0.6
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            ``object_exist`` returns whether object with the specified name exists
         
     | 
| 
      
 17 
     | 
    
         
            +
            or not in database.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            It's a light operation. It just checks existence of the name in the
         
     | 
| 
      
 20 
     | 
    
         
            +
            database. It doesn't load the specified object from disk.
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            ``object_exist`` doesn't check object type. The existing object may be
         
     | 
| 
      
 23 
     | 
    
         
            +
            table, column, function and so on.
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            Syntax
         
     | 
| 
      
 26 
     | 
    
         
            +
            ------
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            This command takes only one required parameter::
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
              object_exist name
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
            Usage
         
     | 
| 
      
 33 
     | 
    
         
            +
            -----
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            You can check whether the name is already used in database:
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 38 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/object_exist/usage.log
         
     | 
| 
      
 39 
     | 
    
         
            +
            .. object_exist Users
         
     | 
| 
      
 40 
     | 
    
         
            +
            .. table_create Users TABLE_HASH_KEY ShortText
         
     | 
| 
      
 41 
     | 
    
         
            +
            .. object_exist Users
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            The ``object_exist Users`` returns ``false`` before we create
         
     | 
| 
      
 44 
     | 
    
         
            +
            ``Users`` table.
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            The ``object_exist Users`` returns ``true`` after we create ``Users``
         
     | 
| 
      
 47 
     | 
    
         
            +
            table.
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            Parameters
         
     | 
| 
      
 50 
     | 
    
         
            +
            ----------
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
            This section describes all parameters.
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
            Required parameters
         
     | 
| 
      
 55 
     | 
    
         
            +
            ^^^^^^^^^^^^^^^^^^^
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            There is only one required parameters.
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            .. _object-exist-name:
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            ``name``
         
     | 
| 
      
 62 
     | 
    
         
            +
            """"""""
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            Specifies the object name to be checked.
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            If you want to check existence of a column, use
         
     | 
| 
      
 67 
     | 
    
         
            +
            ``TABLE_NAME.COLUMN_NAME`` format like the following:
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 70 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/object_exist/name_column.log
         
     | 
| 
      
 71 
     | 
    
         
            +
            .. table_create Logs TABLE_NO_KEY
         
     | 
| 
      
 72 
     | 
    
         
            +
            .. column_create Logs timestamp COLUMN_SCALAR Time
         
     | 
| 
      
 73 
     | 
    
         
            +
            .. object_exist Logs.timestamp
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            ``Logs`` is table name and ``timestamp`` is column name in
         
     | 
| 
      
 76 
     | 
    
         
            +
            ``Logs.timestamp``.
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
            Return value
         
     | 
| 
      
 79 
     | 
    
         
            +
            ------------
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            The command returns ``true`` as body if object with the specified name
         
     | 
| 
      
 82 
     | 
    
         
            +
            exists in database such as::
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
              [HEADER, true]
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
            The command returns ``false`` otherwise such as::
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
              [HEADER, false]
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            See :doc:`/reference/command/output_format` for ``HEADER``.
         
     | 
| 
         @@ -35,9 +35,7 @@ If request is canceled, the canceled request has ``-5`` 
     | 
|
| 
       35 
35 
     | 
    
         
             
            Syntax
         
     | 
| 
       36 
36 
     | 
    
         
             
            ------
         
     | 
| 
       37 
37 
     | 
    
         | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
            The required parameter is only ``id``::
         
     | 
| 
      
 38 
     | 
    
         
            +
            This command takes only one required parameter::
         
     | 
| 
       41 
39 
     | 
    
         | 
| 
       42 
40 
     | 
    
         
             
              request_cancel id
         
     | 
| 
       43 
41 
     | 
    
         | 
| 
         @@ -15,13 +15,15 @@ Summary 
     | 
|
| 
       15 
15 
     | 
    
         
             
            from a table and then outputs them.
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
            ``select`` is the most important command in groonga. You need to
         
     | 
| 
       18 
     | 
    
         
            -
            understand ``select`` to use the full power of  
     | 
| 
      
 18 
     | 
    
         
            +
            understand ``select`` to use the full power of Groonga.
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
            Syntax
         
     | 
| 
       21 
21 
     | 
    
         
             
            ------
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
      
 23 
     | 
    
         
            +
            This command takes many parameters.
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            The required parameter is only ``table``. Other parameters are
         
     | 
| 
      
 26 
     | 
    
         
            +
            optional::
         
     | 
| 
       25 
27 
     | 
    
         | 
| 
       26 
28 
     | 
    
         
             
              select table
         
     | 
| 
       27 
29 
     | 
    
         
             
                     [match_columns=null]
         
     | 
| 
         @@ -87,7 +89,7 @@ Here are a schema definition and sample data to show usage. 
     | 
|
| 
       87 
89 
     | 
    
         
             
            .. column_create Entries content COLUMN_SCALAR Text
         
     | 
| 
       88 
90 
     | 
    
         
             
            .. column_create Entries n_likes COLUMN_SCALAR UInt32
         
     | 
| 
       89 
91 
     | 
    
         
             
            .. column_create Entries tag COLUMN_SCALAR ShortText
         
     | 
| 
       90 
     | 
    
         
            -
            .. table_create Terms TABLE_PAT_KEY 
     | 
| 
      
 92 
     | 
    
         
            +
            .. table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
         
     | 
| 
       91 
93 
     | 
    
         
             
            .. column_create Terms entries_key_index COLUMN_INDEX|WITH_POSITION Entries _key
         
     | 
| 
       92 
94 
     | 
    
         
             
            .. column_create Terms entries_content_index COLUMN_INDEX|WITH_POSITION Entries content
         
     | 
| 
       93 
95 
     | 
    
         
             
            .. load --table Entries
         
     | 
| 
         @@ -126,6 +128,8 @@ using ``TokenBigram`` tokenizer. So both ``Entries._key`` and 
     | 
|
| 
       126 
128 
     | 
    
         | 
| 
       127 
129 
     | 
    
         
             
            OK. The schema and data for examples are ready.
         
     | 
| 
       128 
130 
     | 
    
         | 
| 
      
 131 
     | 
    
         
            +
            .. _select-simple-usage:
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
       129 
133 
     | 
    
         
             
            Simple usage
         
     | 
| 
       130 
134 
     | 
    
         
             
            ^^^^^^^^^^^^
         
     | 
| 
       131 
135 
     | 
    
         | 
| 
         @@ -305,6 +309,8 @@ If nonexistent table is specified, an error is returned. 
     | 
|
| 
       305 
309 
     | 
    
         
             
            .. include:: ../../example/reference/commands/select/table_nonexistent.log
         
     | 
| 
       306 
310 
     | 
    
         
             
            .. select Nonexistent
         
     | 
| 
       307 
311 
     | 
    
         | 
| 
      
 312 
     | 
    
         
            +
            .. _select-search-related-parameters:
         
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
       308 
314 
     | 
    
         
             
            Search related parameters
         
     | 
| 
       309 
315 
     | 
    
         
             
            ^^^^^^^^^^^^^^^^^^^^^^^^^
         
     | 
| 
       310 
316 
     | 
    
         | 
| 
         @@ -485,10 +491,12 @@ is less than ``11`` from ``Entries`` table. 
     | 
|
| 
       485 
491 
     | 
    
         | 
| 
       486 
492 
     | 
    
         
             
            See :doc:`/reference/grn_expr/script_syntax` for other operators.
         
     | 
| 
       487 
493 
     | 
    
         | 
| 
      
 494 
     | 
    
         
            +
            .. _select-advanced-search-parameters:
         
     | 
| 
      
 495 
     | 
    
         
            +
             
     | 
| 
       488 
496 
     | 
    
         
             
            Advanced search parameters
         
     | 
| 
       489 
497 
     | 
    
         
             
            ^^^^^^^^^^^^^^^^^^^^^^^^^^
         
     | 
| 
       490 
498 
     | 
    
         | 
| 
       491 
     | 
    
         
            -
            ..  
     | 
| 
      
 499 
     | 
    
         
            +
            .. _select-match-escalation-threshold:
         
     | 
| 
       492 
500 
     | 
    
         | 
| 
       493 
501 
     | 
    
         
             
            ``match_escalation_threshold``
         
     | 
| 
       494 
502 
     | 
    
         
             
            """"""""""""""""""""""""""""""
         
     | 
| 
         @@ -538,14 +546,14 @@ storategy escalation is not used because the number of matched 
     | 
|
| 
       538 
546 
     | 
    
         
             
            records (0) is larger than ``match_escalation_threshold`` (-1). So no
         
     | 
| 
       539 
547 
     | 
    
         
             
            more searches aren't executed. And no records are matched.
         
     | 
| 
       540 
548 
     | 
    
         | 
| 
       541 
     | 
    
         
            -
            ..  
     | 
| 
      
 549 
     | 
    
         
            +
            .. _select-query-expansion:
         
     | 
| 
       542 
550 
     | 
    
         | 
| 
       543 
551 
     | 
    
         
             
            ``query_expansion``
         
     | 
| 
       544 
552 
     | 
    
         
             
            """""""""""""""""""
         
     | 
| 
       545 
553 
     | 
    
         | 
| 
       546 
     | 
    
         
            -
            Deprecated. Use :ref:`query-expander` instead.
         
     | 
| 
      
 554 
     | 
    
         
            +
            Deprecated. Use :ref:`select-query-expander` instead.
         
     | 
| 
       547 
555 
     | 
    
         | 
| 
       548 
     | 
    
         
            -
            ..  
     | 
| 
      
 556 
     | 
    
         
            +
            .. _select-query-flags:
         
     | 
| 
       549 
557 
     | 
    
         | 
| 
       550 
558 
     | 
    
         
             
            ``query_flags``
         
     | 
| 
       551 
559 
     | 
    
         
             
            """""""""""""""
         
     | 
| 
         @@ -637,7 +645,7 @@ specified. 
     | 
|
| 
       637 
645 
     | 
    
         | 
| 
       638 
646 
     | 
    
         
             
            See also :doc:`/reference/grn_expr/query_syntax`.
         
     | 
| 
       639 
647 
     | 
    
         | 
| 
       640 
     | 
    
         
            -
            ..  
     | 
| 
      
 648 
     | 
    
         
            +
            .. _select-query-expander:
         
     | 
| 
       641 
649 
     | 
    
         | 
| 
       642 
650 
     | 
    
         
             
            ``query_expander``
         
     | 
| 
       643 
651 
     | 
    
         
             
            """"""""""""""""""
         
     | 
| 
         @@ -671,7 +679,7 @@ Here is a sample substitution table to show a simple 
     | 
|
| 
       671 
679 
     | 
    
         | 
| 
       672 
680 
     | 
    
         
             
            .. groonga-command
         
     | 
| 
       673 
681 
     | 
    
         
             
            .. include:: ../../example/reference/commands/select/query_expander_substitution_table.log
         
     | 
| 
       674 
     | 
    
         
            -
            .. table_create Thesaurus TABLE_PAT_KEY 
     | 
| 
      
 682 
     | 
    
         
            +
            .. table_create Thesaurus TABLE_PAT_KEY ShortText --normalizer NormalizerAuto
         
     | 
| 
       675 
683 
     | 
    
         
             
            .. column_create Thesaurus synonym COLUMN_VECTOR ShortText
         
     | 
| 
       676 
684 
     | 
    
         
             
            .. load --table Thesaurus
         
     | 
| 
       677 
685 
     | 
    
         
             
            .. [
         
     | 
| 
         @@ -680,12 +688,15 @@ Here is a sample substitution table to show a simple 
     | 
|
| 
       680 
688 
     | 
    
         
             
            .. ]
         
     | 
| 
       681 
689 
     | 
    
         | 
| 
       682 
690 
     | 
    
         
             
            ``Thesaurus`` substitution table has two synonyms, ``"mroonga"`` and
         
     | 
| 
       683 
     | 
    
         
            -
            ``"groonga"``. If an user searches with ``"mroonga"``,  
     | 
| 
      
 691 
     | 
    
         
            +
            ``"groonga"``. If an user searches with ``"mroonga"``, Groonga
         
     | 
| 
       684 
692 
     | 
    
         
             
            searches with ``"((mroonga) OR (tritonn) OR (groonga mysql))"``. If an
         
     | 
| 
       685 
     | 
    
         
            -
            user searches with ``"groonga"``,  
     | 
| 
       686 
     | 
    
         
            -
            OR (senna))"``. 
     | 
| 
       687 
     | 
    
         
            -
             
     | 
| 
       688 
     | 
    
         
            -
             
     | 
| 
      
 693 
     | 
    
         
            +
            user searches with ``"groonga"``, Groonga searches with ``"((groonga)
         
     | 
| 
      
 694 
     | 
    
         
            +
            OR (senna))"``.
         
     | 
| 
      
 695 
     | 
    
         
            +
             
     | 
| 
      
 696 
     | 
    
         
            +
            Normally, it's good idea that substitution table uses a
         
     | 
| 
      
 697 
     | 
    
         
            +
            normalizer. For example, if normalizer is used, substitute target word
         
     | 
| 
      
 698 
     | 
    
         
            +
            is matched in case insensitive manner. See
         
     | 
| 
      
 699 
     | 
    
         
            +
            :doc:`/reference/normalizers` for available normalizers.
         
     | 
| 
       689 
700 
     | 
    
         | 
| 
       690 
701 
     | 
    
         
             
            Note that those synonym values include the key value such as
         
     | 
| 
       691 
702 
     | 
    
         
             
            ``"mroonga"`` and ``"groonga"``. It's recommended that you include the
         
     | 
| 
         @@ -840,6 +851,8 @@ number of records is ``5``. 
     | 
|
| 
       840 
851 
     | 
    
         | 
| 
       841 
852 
     | 
    
         
             
            The default value is ``0``.
         
     | 
| 
       842 
853 
     | 
    
         | 
| 
      
 854 
     | 
    
         
            +
            .. _select-limit:
         
     | 
| 
      
 855 
     | 
    
         
            +
             
     | 
| 
       843 
856 
     | 
    
         
             
            ``limit``
         
     | 
| 
       844 
857 
     | 
    
         
             
            """""""""
         
     | 
| 
       845 
858 
     | 
    
         | 
| 
         @@ -868,6 +881,8 @@ The ``select`` command outputs all records. 
     | 
|
| 
       868 
881 
     | 
    
         | 
| 
       869 
882 
     | 
    
         
             
            The default value is ``10``.
         
     | 
| 
       870 
883 
     | 
    
         | 
| 
      
 884 
     | 
    
         
            +
            .. _select-scorer:
         
     | 
| 
      
 885 
     | 
    
         
            +
             
     | 
| 
       871 
886 
     | 
    
         
             
            ``scorer``
         
     | 
| 
       872 
887 
     | 
    
         
             
            """"""""""
         
     | 
| 
       873 
888 
     | 
    
         | 
| 
         @@ -1190,7 +1205,7 @@ You can use the following calculation types: 
     | 
|
| 
       1190 
1205 
     | 
    
         
             
                 - ``_nsubrecs``
         
     | 
| 
       1191 
1206 
     | 
    
         
             
                 - Not needs.
         
     | 
| 
       1192 
1207 
     | 
    
         
             
                 - Counting grouped records. It's always enabled. So you don't
         
     | 
| 
       1193 
     | 
    
         
            -
                   specify it.
         
     | 
| 
      
 1208 
     | 
    
         
            +
                   need to specify it.
         
     | 
| 
       1194 
1209 
     | 
    
         
             
               * - ``MAX``
         
     | 
| 
       1195 
1210 
     | 
    
         
             
                 - ``_max``
         
     | 
| 
       1196 
1211 
     | 
    
         
             
                 - Needs.
         
     | 
| 
         @@ -1358,7 +1373,9 @@ parameters: 
     | 
|
| 
       1358 
1373 
     | 
    
         
             
              * ``.``
         
     | 
| 
       1359 
1374 
     | 
    
         
             
              * ``_``
         
     | 
| 
       1360 
1375 
     | 
    
         | 
| 
       1361 
     | 
    
         
            -
            ..  
     | 
| 
      
 1376 
     | 
    
         
            +
            .. note::
         
     | 
| 
      
 1377 
     | 
    
         
            +
             
     | 
| 
      
 1378 
     | 
    
         
            +
               You can use more characters but it's better that you use only these
         
     | 
| 
       1362 
1379 
     | 
    
         
             
               characters.
         
     | 
| 
       1363 
1380 
     | 
    
         | 
| 
       1364 
1381 
     | 
    
         
             
            Parameters that has the same ``${LABEL}`` value are grouped. Grouped
         
     | 
| 
         @@ -1533,16 +1550,38 @@ result. 
     | 
|
| 
       1533 
1550 
     | 
    
         
             
            Cache related parameter
         
     | 
| 
       1534 
1551 
     | 
    
         
             
            ^^^^^^^^^^^^^^^^^^^^^^^
         
     | 
| 
       1535 
1552 
     | 
    
         | 
| 
      
 1553 
     | 
    
         
            +
            .. _select-cache:
         
     | 
| 
      
 1554 
     | 
    
         
            +
             
     | 
| 
       1536 
1555 
     | 
    
         
             
            ``cache``
         
     | 
| 
       1537 
1556 
     | 
    
         
             
            """""""""
         
     | 
| 
       1538 
1557 
     | 
    
         | 
| 
       1539 
     | 
    
         
            -
             
     | 
| 
      
 1558 
     | 
    
         
            +
            Specifies whether caching the result of this query or not.
         
     | 
| 
      
 1559 
     | 
    
         
            +
             
     | 
| 
      
 1560 
     | 
    
         
            +
            If the result of this query is cached, the next same query returns
         
     | 
| 
      
 1561 
     | 
    
         
            +
            response quickly by using the cache.
         
     | 
| 
      
 1562 
     | 
    
         
            +
             
     | 
| 
      
 1563 
     | 
    
         
            +
            It doesn't control whether existing cached result is used or not.
         
     | 
| 
      
 1564 
     | 
    
         
            +
             
     | 
| 
      
 1565 
     | 
    
         
            +
            Here are available values:
         
     | 
| 
      
 1566 
     | 
    
         
            +
             
     | 
| 
      
 1567 
     | 
    
         
            +
            .. list-table::
         
     | 
| 
      
 1568 
     | 
    
         
            +
               :header-rows: 1
         
     | 
| 
      
 1569 
     | 
    
         
            +
             
     | 
| 
      
 1570 
     | 
    
         
            +
               * - Value
         
     | 
| 
      
 1571 
     | 
    
         
            +
                 - Description
         
     | 
| 
      
 1572 
     | 
    
         
            +
               * - ``no``
         
     | 
| 
      
 1573 
     | 
    
         
            +
                 - Don't cache the output of this query.
         
     | 
| 
      
 1574 
     | 
    
         
            +
               * - ``yes``
         
     | 
| 
      
 1575 
     | 
    
         
            +
                 - Cache the output of this query.
         
     | 
| 
      
 1576 
     | 
    
         
            +
                   It's the default value.
         
     | 
| 
       1540 
1577 
     | 
    
         | 
| 
       1541 
     | 
    
         
            -
             
     | 
| 
      
 1578 
     | 
    
         
            +
            Here is an example to disable caching the result of this query:
         
     | 
| 
       1542 
1579 
     | 
    
         | 
| 
       1543 
     | 
    
         
            -
             
     | 
| 
      
 1580 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 1581 
     | 
    
         
            +
            .. include:: ../../example/reference/commands/select/cache_no.log
         
     | 
| 
      
 1582 
     | 
    
         
            +
            .. select Entries --cache no
         
     | 
| 
       1544 
1583 
     | 
    
         | 
| 
       1545 
     | 
    
         
            -
             
     | 
| 
      
 1584 
     | 
    
         
            +
            The default value is ``yes``.
         
     | 
| 
       1546 
1585 
     | 
    
         | 
| 
       1547 
1586 
     | 
    
         
             
            Score related parameters
         
     | 
| 
       1548 
1587 
     | 
    
         
             
            ^^^^^^^^^^^^^^^^^^^^^^^^
         
     | 
| 
         @@ -1642,73 +1681,218 @@ the same value. You can change increase score for each record that has 
     | 
|
| 
       1642 
1681 
     | 
    
         
             
            the same ``"KEYWORD"``. It is useful to tune search score. See
         
     | 
| 
       1643 
1682 
     | 
    
         
             
            :ref:`weight-vector-column` for details.
         
     | 
| 
       1644 
1683 
     | 
    
         | 
| 
       1645 
     | 
    
         
            -
             
     | 
| 
       1646 
     | 
    
         
            -
            ----
         
     | 
| 
      
 1684 
     | 
    
         
            +
            .. _select-return-value:
         
     | 
| 
       1647 
1685 
     | 
    
         | 
| 
       1648 
     | 
    
         
            -
             
     | 
| 
      
 1686 
     | 
    
         
            +
            Return value
         
     | 
| 
      
 1687 
     | 
    
         
            +
            ------------
         
     | 
| 
      
 1688 
     | 
    
         
            +
             
     | 
| 
      
 1689 
     | 
    
         
            +
            ``select`` returns response with the following format::
         
     | 
| 
      
 1690 
     | 
    
         
            +
             
     | 
| 
      
 1691 
     | 
    
         
            +
              [
         
     | 
| 
      
 1692 
     | 
    
         
            +
                HEADER,
         
     | 
| 
      
 1693 
     | 
    
         
            +
                [
         
     | 
| 
      
 1694 
     | 
    
         
            +
                  SEARCH_RESULT,
         
     | 
| 
      
 1695 
     | 
    
         
            +
                  DRILLDOWN_RESULT_1,
         
     | 
| 
      
 1696 
     | 
    
         
            +
                  DRILLDOWN_RESULT_2,
         
     | 
| 
      
 1697 
     | 
    
         
            +
                  ...,
         
     | 
| 
      
 1698 
     | 
    
         
            +
                  DRILLDOWN_RESULT_N
         
     | 
| 
      
 1699 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1700 
     | 
    
         
            +
              ]
         
     | 
| 
      
 1701 
     | 
    
         
            +
             
     | 
| 
      
 1702 
     | 
    
         
            +
            If ``select`` fails, error details are in ``HEADER``.
         
     | 
| 
      
 1703 
     | 
    
         
            +
             
     | 
| 
      
 1704 
     | 
    
         
            +
            See :doc:`/reference/command/output_format` for ``HEADER``.
         
     | 
| 
      
 1705 
     | 
    
         
            +
             
     | 
| 
      
 1706 
     | 
    
         
            +
            There are zero or more ``DRILLDOWN_RESULT``. If no ``drilldown`` and
         
     | 
| 
      
 1707 
     | 
    
         
            +
            ``drilldown[${LABEL}].keys`` are specified, they are omitted like the
         
     | 
| 
      
 1708 
     | 
    
         
            +
            following::
         
     | 
| 
      
 1709 
     | 
    
         
            +
             
     | 
| 
      
 1710 
     | 
    
         
            +
              [
         
     | 
| 
      
 1711 
     | 
    
         
            +
                HEADER,
         
     | 
| 
      
 1712 
     | 
    
         
            +
                [
         
     | 
| 
      
 1713 
     | 
    
         
            +
                  SEARCH_RESULT
         
     | 
| 
      
 1714 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1715 
     | 
    
         
            +
              ]
         
     | 
| 
       1649 
1716 
     | 
    
         | 
| 
       1650 
     | 
    
         
            -
             
     | 
| 
      
 1717 
     | 
    
         
            +
            If ``drilldown`` has two or more keys like ``--drilldown "_key,
         
     | 
| 
      
 1718 
     | 
    
         
            +
            column1, column2"``, multiple ``DRILLDOWN_RESULT`` exist::
         
     | 
| 
       1651 
1719 
     | 
    
         | 
| 
       1652 
     | 
    
         
            -
             
     | 
| 
      
 1720 
     | 
    
         
            +
              [
         
     | 
| 
      
 1721 
     | 
    
         
            +
                HEADER,
         
     | 
| 
      
 1722 
     | 
    
         
            +
                [
         
     | 
| 
      
 1723 
     | 
    
         
            +
                  SEARCH_RESULT,
         
     | 
| 
      
 1724 
     | 
    
         
            +
                  DRILLDOWN_RESULT_FOR_KEY,
         
     | 
| 
      
 1725 
     | 
    
         
            +
                  DRILLDOWN_RESULT_FOR_COLUMN1,
         
     | 
| 
      
 1726 
     | 
    
         
            +
                  DRILLDOWN_RESULT_FOR_COLUMN2
         
     | 
| 
      
 1727 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1728 
     | 
    
         
            +
              ]
         
     | 
| 
       1653 
1729 
     | 
    
         | 
| 
       1654 
     | 
    
         
            -
             [ 
     | 
| 
      
 1730 
     | 
    
         
            +
            If ``drilldown[${LABEL}].keys`` is used, only one ``DRILLDOWN_RESULT``
         
     | 
| 
      
 1731 
     | 
    
         
            +
            exist::
         
     | 
| 
       1655 
1732 
     | 
    
         | 
| 
       1656 
     | 
    
         
            -
             
     | 
| 
      
 1733 
     | 
    
         
            +
              [
         
     | 
| 
      
 1734 
     | 
    
         
            +
                HEADER,
         
     | 
| 
      
 1735 
     | 
    
         
            +
                [
         
     | 
| 
      
 1736 
     | 
    
         
            +
                  SEARCH_RESULT,
         
     | 
| 
      
 1737 
     | 
    
         
            +
                  DRILLDOWN_RESULT_FOR_LABELED_DRILLDOWN
         
     | 
| 
      
 1738 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1739 
     | 
    
         
            +
              ]
         
     | 
| 
       1657 
1740 
     | 
    
         | 
| 
       1658 
     | 
    
         
            -
             
     | 
| 
       1659 
     | 
    
         
            -
             
     | 
| 
      
 1741 
     | 
    
         
            +
            ``DRILLDOWN_RESULT`` format is different between ``drilldown`` and
         
     | 
| 
      
 1742 
     | 
    
         
            +
            ``drilldown[${LABEL}].keys``. It's described later.
         
     | 
| 
       1660 
1743 
     | 
    
         | 
| 
       1661 
     | 
    
         
            -
             
     | 
| 
      
 1744 
     | 
    
         
            +
            ``SEARCH_RESULT`` is the following format::
         
     | 
| 
       1662 
1745 
     | 
    
         | 
| 
       1663 
     | 
    
         
            -
               
     | 
| 
      
 1746 
     | 
    
         
            +
              [
         
     | 
| 
      
 1747 
     | 
    
         
            +
                [N_HITS],
         
     | 
| 
      
 1748 
     | 
    
         
            +
                COLUMNS,
         
     | 
| 
      
 1749 
     | 
    
         
            +
                RECORDS
         
     | 
| 
      
 1750 
     | 
    
         
            +
              ]
         
     | 
| 
       1664 
1751 
     | 
    
         | 
| 
       1665 
     | 
    
         
            -
             
     | 
| 
      
 1752 
     | 
    
         
            +
            See :ref:`select-simple-usage` for concrete example of the format.
         
     | 
| 
       1666 
1753 
     | 
    
         | 
| 
       1667 
     | 
    
         
            -
             
     | 
| 
      
 1754 
     | 
    
         
            +
            ``N_HITS`` is the number of matched records before :ref:`select-limit`
         
     | 
| 
      
 1755 
     | 
    
         
            +
            is applied.
         
     | 
| 
       1668 
1756 
     | 
    
         | 
| 
       1669 
     | 
    
         
            -
             
     | 
| 
      
 1757 
     | 
    
         
            +
            ``COLUMNS`` describes about output columns specified by
         
     | 
| 
      
 1758 
     | 
    
         
            +
            :ref:`select-output-columns`. It uses the following format::
         
     | 
| 
       1670 
1759 
     | 
    
         | 
| 
       1671 
     | 
    
         
            -
               
     | 
| 
      
 1760 
     | 
    
         
            +
              [
         
     | 
| 
      
 1761 
     | 
    
         
            +
                [COLUMN_NAME_1, COLUMN_TYPE_1],
         
     | 
| 
      
 1762 
     | 
    
         
            +
                [COLUMN_NAME_2, COLUMN_TYPE_2],
         
     | 
| 
      
 1763 
     | 
    
         
            +
                ...,
         
     | 
| 
      
 1764 
     | 
    
         
            +
                [COLUMN_NAME_N, COLUMN_TYPE_N]
         
     | 
| 
      
 1765 
     | 
    
         
            +
              ]
         
     | 
| 
      
 1766 
     | 
    
         
            +
             
     | 
| 
      
 1767 
     | 
    
         
            +
            ``COLUMNS`` includes one or more output column information. Each
         
     | 
| 
      
 1768 
     | 
    
         
            +
            output column information includes the followings:
         
     | 
| 
       1672 
1769 
     | 
    
         | 
| 
       1673 
     | 
    
         
            -
             
     | 
| 
      
 1770 
     | 
    
         
            +
              * Column name as string
         
     | 
| 
      
 1771 
     | 
    
         
            +
              * Column type as string or ``null``
         
     | 
| 
       1674 
1772 
     | 
    
         | 
| 
       1675 
     | 
    
         
            -
             
     | 
| 
      
 1773 
     | 
    
         
            +
            Column name is extracted from value specified as
         
     | 
| 
      
 1774 
     | 
    
         
            +
            :ref:`select-output-columns`.
         
     | 
| 
       1676 
1775 
     | 
    
         | 
| 
       1677 
     | 
    
         
            -
             
     | 
| 
      
 1776 
     | 
    
         
            +
            Column type is Groonga's type name or ``null``. It doesn't describe
         
     | 
| 
      
 1777 
     | 
    
         
            +
            whether the column value is vector or scalar. You need to determine it
         
     | 
| 
      
 1778 
     | 
    
         
            +
            by whether real column value is array or not.
         
     | 
| 
       1678 
1779 
     | 
    
         | 
| 
       1679 
     | 
    
         
            -
             
     | 
| 
      
 1780 
     | 
    
         
            +
            See :doc:`/reference/types` for type details.
         
     | 
| 
       1680 
1781 
     | 
    
         | 
| 
       1681 
     | 
    
         
            -
             
     | 
| 
      
 1782 
     | 
    
         
            +
            ``null`` is used when column value type isn't determined. For example,
         
     | 
| 
      
 1783 
     | 
    
         
            +
            function call in :ref:`select-output-columns` such as
         
     | 
| 
      
 1784 
     | 
    
         
            +
            ``--output_columns "snippet_html(content)"`` uses ``null``.
         
     | 
| 
       1682 
1785 
     | 
    
         | 
| 
       1683 
     | 
    
         
            -
             
     | 
| 
      
 1786 
     | 
    
         
            +
            Here is an example of ``COLUMNS``::
         
     | 
| 
      
 1787 
     | 
    
         
            +
             
     | 
| 
      
 1788 
     | 
    
         
            +
              [
         
     | 
| 
      
 1789 
     | 
    
         
            +
                ["_id",     "UInt32"],
         
     | 
| 
      
 1790 
     | 
    
         
            +
                ["_key",    "ShortText"],
         
     | 
| 
      
 1791 
     | 
    
         
            +
                ["n_likes", "UInt32"],
         
     | 
| 
      
 1792 
     | 
    
         
            +
              ]
         
     | 
| 
       1684 
1793 
     | 
    
         | 
| 
       1685 
     | 
    
         
            -
             
     | 
| 
      
 1794 
     | 
    
         
            +
            ``RECORDS`` includes column values for each matched record. Included
         
     | 
| 
      
 1795 
     | 
    
         
            +
            records are selected by :ref:`select-offset` and
         
     | 
| 
      
 1796 
     | 
    
         
            +
            :ref:`select-limit`. It uses the following format::
         
     | 
| 
       1686 
1797 
     | 
    
         | 
| 
       1687 
     | 
    
         
            -
               
     | 
| 
      
 1798 
     | 
    
         
            +
              [
         
     | 
| 
      
 1799 
     | 
    
         
            +
                [
         
     | 
| 
      
 1800 
     | 
    
         
            +
                  RECORD_1_COLUMN_1,
         
     | 
| 
      
 1801 
     | 
    
         
            +
                  RECORD_1_COLUMN_2,
         
     | 
| 
      
 1802 
     | 
    
         
            +
                  ...,
         
     | 
| 
      
 1803 
     | 
    
         
            +
                  RECORD_1_COLUMN_N
         
     | 
| 
      
 1804 
     | 
    
         
            +
                ],
         
     | 
| 
      
 1805 
     | 
    
         
            +
                [
         
     | 
| 
      
 1806 
     | 
    
         
            +
                  RECORD_2_COLUMN_1,
         
     | 
| 
      
 1807 
     | 
    
         
            +
                  RECORD_2_COLUMN_2,
         
     | 
| 
      
 1808 
     | 
    
         
            +
                  ...,
         
     | 
| 
      
 1809 
     | 
    
         
            +
                  RECORD_2_COLUMN_N
         
     | 
| 
      
 1810 
     | 
    
         
            +
                ],
         
     | 
| 
      
 1811 
     | 
    
         
            +
                ...
         
     | 
| 
      
 1812 
     | 
    
         
            +
                [
         
     | 
| 
      
 1813 
     | 
    
         
            +
                  RECORD_N_COLUMN_1,
         
     | 
| 
      
 1814 
     | 
    
         
            +
                  RECORD_N_COLUMN_2,
         
     | 
| 
      
 1815 
     | 
    
         
            +
                  ...,
         
     | 
| 
      
 1816 
     | 
    
         
            +
                  RECORD_N_COLUMN_N
         
     | 
| 
      
 1817 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1818 
     | 
    
         
            +
              ]
         
     | 
| 
       1688 
1819 
     | 
    
         | 
| 
       1689 
     | 
    
         
            -
             
     | 
| 
      
 1820 
     | 
    
         
            +
            Here is an example ``RECORDS``::
         
     | 
| 
       1690 
1821 
     | 
    
         | 
| 
       1691 
     | 
    
         
            -
             
     | 
| 
      
 1822 
     | 
    
         
            +
              [
         
     | 
| 
      
 1823 
     | 
    
         
            +
                [
         
     | 
| 
      
 1824 
     | 
    
         
            +
                  1,
         
     | 
| 
      
 1825 
     | 
    
         
            +
                  "The first post!",
         
     | 
| 
      
 1826 
     | 
    
         
            +
                  5
         
     | 
| 
      
 1827 
     | 
    
         
            +
                ],
         
     | 
| 
      
 1828 
     | 
    
         
            +
                [
         
     | 
| 
      
 1829 
     | 
    
         
            +
                  2,
         
     | 
| 
      
 1830 
     | 
    
         
            +
                  "Groonga",
         
     | 
| 
      
 1831 
     | 
    
         
            +
                  10
         
     | 
| 
      
 1832 
     | 
    
         
            +
                ],
         
     | 
| 
      
 1833 
     | 
    
         
            +
                [
         
     | 
| 
      
 1834 
     | 
    
         
            +
                  3,
         
     | 
| 
      
 1835 
     | 
    
         
            +
                  "Mroonga",
         
     | 
| 
      
 1836 
     | 
    
         
            +
                  15
         
     | 
| 
      
 1837 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1838 
     | 
    
         
            +
              ]
         
     | 
| 
       1692 
1839 
     | 
    
         | 
| 
       1693 
     | 
    
         
            -
             
     | 
| 
      
 1840 
     | 
    
         
            +
            ``DRILLDOWN_RESULT`` format is different between ``drilldown`` and
         
     | 
| 
      
 1841 
     | 
    
         
            +
            ``drilldown[${LABEL}].keys``.
         
     | 
| 
       1694 
1842 
     | 
    
         | 
| 
       1695 
     | 
    
         
            -
             
     | 
| 
      
 1843 
     | 
    
         
            +
            ``drilldown`` uses the same format as ``SEARCH_RESULT``::
         
     | 
| 
       1696 
1844 
     | 
    
         | 
| 
       1697 
     | 
    
         
            -
               
     | 
| 
      
 1845 
     | 
    
         
            +
              [
         
     | 
| 
      
 1846 
     | 
    
         
            +
                [N_HITS],
         
     | 
| 
      
 1847 
     | 
    
         
            +
                COLUMNS,
         
     | 
| 
      
 1848 
     | 
    
         
            +
                RECORDS
         
     | 
| 
      
 1849 
     | 
    
         
            +
              ]
         
     | 
| 
       1698 
1850 
     | 
    
         | 
| 
       1699 
     | 
    
         
            -
             
     | 
| 
      
 1851 
     | 
    
         
            +
            And ``drilldown`` generates one or more ``DRILLDOWN_RESULT`` when
         
     | 
| 
      
 1852 
     | 
    
         
            +
            :ref:`select-drilldown` has one ore more keys.
         
     | 
| 
      
 1853 
     | 
    
         
            +
             
     | 
| 
      
 1854 
     | 
    
         
            +
            ``drilldown[${LABEL}].keys`` uses the following format. Multiple
         
     | 
| 
      
 1855 
     | 
    
         
            +
            ``drilldown[${LABEL}].keys`` are mapped to one object (key-value
         
     | 
| 
      
 1856 
     | 
    
         
            +
            pairs)::
         
     | 
| 
      
 1857 
     | 
    
         
            +
             
     | 
| 
      
 1858 
     | 
    
         
            +
              {
         
     | 
| 
      
 1859 
     | 
    
         
            +
                "LABEL_1": [
         
     | 
| 
      
 1860 
     | 
    
         
            +
                  [N_HITS],
         
     | 
| 
      
 1861 
     | 
    
         
            +
                  COLUMNS,
         
     | 
| 
      
 1862 
     | 
    
         
            +
                  RECORDS
         
     | 
| 
      
 1863 
     | 
    
         
            +
                ],
         
     | 
| 
      
 1864 
     | 
    
         
            +
                "LABEL_2": [
         
     | 
| 
      
 1865 
     | 
    
         
            +
                  [N_HITS],
         
     | 
| 
      
 1866 
     | 
    
         
            +
                  COLUMNS,
         
     | 
| 
      
 1867 
     | 
    
         
            +
                  RECORDS
         
     | 
| 
      
 1868 
     | 
    
         
            +
                ],
         
     | 
| 
      
 1869 
     | 
    
         
            +
                ...,
         
     | 
| 
      
 1870 
     | 
    
         
            +
                "LABEL_N": [
         
     | 
| 
      
 1871 
     | 
    
         
            +
                  [N_HITS],
         
     | 
| 
      
 1872 
     | 
    
         
            +
                  COLUMNS,
         
     | 
| 
      
 1873 
     | 
    
         
            +
                  RECORDS
         
     | 
| 
      
 1874 
     | 
    
         
            +
                ]
         
     | 
| 
      
 1875 
     | 
    
         
            +
              }
         
     | 
| 
       1700 
1876 
     | 
    
         | 
| 
       1701 
     | 
    
         
            -
             
     | 
| 
      
 1877 
     | 
    
         
            +
            Each ``drilldown[${LABEL}].keys`` corresponds to the following::
         
     | 
| 
       1702 
1878 
     | 
    
         | 
| 
       1703 
     | 
    
         
            -
             
     | 
| 
      
 1879 
     | 
    
         
            +
              "LABEL": [
         
     | 
| 
      
 1880 
     | 
    
         
            +
                [N_HITS],
         
     | 
| 
      
 1881 
     | 
    
         
            +
                COLUMNS,
         
     | 
| 
      
 1882 
     | 
    
         
            +
                RECORDS
         
     | 
| 
      
 1883 
     | 
    
         
            +
              ]
         
     | 
| 
       1704 
1884 
     | 
    
         | 
| 
       1705 
     | 
    
         
            -
             
     | 
| 
      
 1885 
     | 
    
         
            +
            The following value part is the same format as ``SEARCH_RESULT``::
         
     | 
| 
       1706 
1886 
     | 
    
         | 
| 
       1707 
     | 
    
         
            -
             
     | 
| 
      
 1887 
     | 
    
         
            +
              [
         
     | 
| 
      
 1888 
     | 
    
         
            +
                [N_HITS],
         
     | 
| 
      
 1889 
     | 
    
         
            +
                COLUMNS,
         
     | 
| 
      
 1890 
     | 
    
         
            +
                RECORDS
         
     | 
| 
      
 1891 
     | 
    
         
            +
              ]
         
     | 
| 
       1708 
1892 
     | 
    
         | 
| 
       1709 
     | 
    
         
            -
             
     | 
| 
      
 1893 
     | 
    
         
            +
            See also :ref:`select-drilldown-label-output-format` for
         
     | 
| 
      
 1894 
     | 
    
         
            +
            ``drilldown[${LABEL}]`` style drilldown output format.
         
     | 
| 
       1710 
1895 
     | 
    
         | 
| 
       1711 
     | 
    
         
            -
                drilldown_output_columns, drilldown_offset, drilldown_limitによって指定された条件に従って各レコードの値が出力されます。
         
     | 
| 
       1712 
1896 
     | 
    
         | 
| 
       1713 
1897 
     | 
    
         
             
            See also
         
     | 
| 
       1714 
1898 
     | 
    
         
             
            --------
         
     |