rroonga 6.0.0-x64-mingw32 → 6.0.2-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/doc/text/news.md +38 -1
- data/ext/groonga/extconf.rb +14 -1
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-exception.c +18 -1
- data/ext/groonga/rb-grn-expression.c +0 -8
- data/ext/groonga/rb-grn-hash.c +15 -3
- data/ext/groonga/rb-grn-logger.c +22 -22
- data/ext/groonga/rb-grn-object.c +28 -6
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-request-canceler.c +164 -0
- data/ext/groonga/rb-grn-request-timer-id.c +64 -0
- data/ext/groonga/rb-grn-request-timer.c +155 -0
- data/ext/groonga/rb-grn-type.c +43 -1
- data/ext/groonga/rb-grn.h +17 -5
- data/ext/groonga/rb-groonga.c +3 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/groonga/expression-builder.rb +4 -13
- data/rroonga-build.rb +3 -3
- data/rroonga.gemspec +1 -2
- data/test/run-test.rb +2 -2
- data/test/test-expression-builder.rb +13 -1
- data/test/test-hash.rb +22 -3
- data/test/test-request-canceler.rb +46 -0
- data/test/test-request-timer.rb +40 -0
- data/test/test-table.rb +43 -7
- data/test/test-type.rb +104 -2
- 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/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.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/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +8 -0
- data/vendor/local/include/groonga/groonga.h +1 -0
- data/vendor/local/include/groonga/groonga/dump.h +1 -1
- data/vendor/local/include/groonga/groonga/expr.h +1 -2
- data/vendor/local/include/groonga/groonga/groonga.h +18 -5
- data/vendor/local/include/groonga/groonga/obj.h +1 -0
- data/vendor/local/include/groonga/groonga/plugin.h +9 -0
- data/vendor/local/include/groonga/groonga/portability.h +8 -0
- data/vendor/local/include/groonga/groonga/request_canceler.h +1 -0
- data/vendor/local/include/groonga/groonga/request_timer.h +53 -0
- data/vendor/local/include/groonga/groonga/type.h +9 -0
- data/vendor/local/lib/groonga/plugins/expression_rewriters/optimizer.rb +131 -22
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -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/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/ruby/eval.rb +36 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +8 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +43 -8
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/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/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/scripts/ruby/command_line/grndb.rb +14 -0
- data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +4 -0
- data/vendor/local/lib/groonga/scripts/ruby/eval_context.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +11 -25
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +67 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/constant.rb +22 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/function_call.rb +50 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/logical_operation.rb +33 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/variable.rb +18 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree_builder.rb +92 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +35 -6
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/liblz4.a +0 -0
- 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/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/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/release.txt +10 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +19 -13
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt +9 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +4 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +17 -51
- 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 +13 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +9 -7
- 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 +5 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/limitations.txt +4 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +224 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +8 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/request_timeout.txt +78 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/return_code.txt +6 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +1 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +4 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +1 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +383 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +84 -10
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +11 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +41 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +73 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +10 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +349 -91
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +49 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/prefix_rk_search.txt +6 -6
- 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 +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +0 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +9 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/client.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +31 -26
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +40 -37
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +15 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/genindex.html +21 -9
- data/vendor/local/share/doc/groonga/en/html/index.html +74 -77
- data/vendor/local/share/doc/groonga/en/html/install.html +8 -12
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +14 -18
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +28 -72
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +19 -13
- data/vendor/local/share/doc/groonga/en/html/install/others.html +25 -26
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/limitations.html +10 -12
- data/vendor/local/share/doc/groonga/en/html/news.html +510 -303
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -27
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +25 -28
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +36 -39
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +81 -84
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +68 -70
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +20 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +19 -22
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +66 -68
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +208 -0
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +32 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +33 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +50 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +36 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +35 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +45 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +57 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +39 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +46 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +59 -66
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +155 -162
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +465 -67
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +119 -122
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +39 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +28 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +31 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +40 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +31 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +93 -96
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +184 -187
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +114 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +46 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +42 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +101 -79
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +126 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +33 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +54 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +50 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +28 -31
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +16 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +19 -22
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +421 -121
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +67 -39
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +21 -24
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +23 -26
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +21 -24
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +19 -26
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +15 -18
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/server/http.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/package.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/spec.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +10 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +19 -13
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt +9 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +4 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +17 -51
- 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 +13 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +9 -7
- 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 +5 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt +4 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +224 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +8 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/request_timeout.txt +78 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/return_code.txt +6 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +1 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +4 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +1 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +383 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +84 -10
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +11 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +41 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +73 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +10 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +349 -91
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +49 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/prefix_rk_search.txt +6 -6
- 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 +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +0 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +9 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/client.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +20 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +31 -26
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +41 -37
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -32
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +21 -9
- data/vendor/local/share/doc/groonga/ja/html/index.html +76 -79
- data/vendor/local/share/doc/groonga/ja/html/install.html +8 -12
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -18
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -67
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +19 -13
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -24
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/news.html +479 -282
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -27
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +25 -28
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +71 -74
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -71
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +20 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +21 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +15 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +66 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +193 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +32 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +48 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +36 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +42 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +42 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +44 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +55 -58
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +46 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +59 -66
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +137 -144
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +419 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +43 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +117 -120
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +39 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +91 -94
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +172 -175
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +104 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +44 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +42 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +95 -79
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +116 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +54 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +50 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +397 -127
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +97 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +19 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +22 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +24 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +16 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +16 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +10 -13
- metadata +72 -76
- 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 +0 -41
- 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 +0 -41
- data/vendor/local/share/man/ja/man1/groonga.1 +0 -52774
- data/vendor/local/share/man/man1/groonga.1 +0 -55612
@@ -3,11 +3,11 @@
|
|
3
3
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
4
|
|
5
5
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.3.
|
10
|
+
<title>7.3.33. logical_range_filter — Groonga v6.0.2 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '
|
18
|
+
VERSION: '6.0.2',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,10 +25,10 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga
|
28
|
+
<link rel="top" title="Groonga v6.0.2 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="7.3. Command" href="../command.html" />
|
30
|
-
<link rel="next" title="7.3.
|
31
|
-
<link rel="prev" title="7.3.
|
30
|
+
<link rel="next" title="7.3.34. logical_select" href="logical_select.html" />
|
31
|
+
<link rel="prev" title="7.3.32. logical_parameters" href="logical_parameters.html" />
|
32
32
|
</head>
|
33
33
|
<body role="document">
|
34
34
|
<div class="header">
|
@@ -55,12 +55,12 @@
|
|
55
55
|
<a href="../../genindex.html" title="General Index"
|
56
56
|
accesskey="I">index</a></li>
|
57
57
|
<li class="right" >
|
58
|
-
<a href="logical_select.html" title="7.3.
|
58
|
+
<a href="logical_select.html" title="7.3.34. logical_select"
|
59
59
|
accesskey="N">next</a> |</li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="logical_parameters.html" title="7.3.
|
61
|
+
<a href="logical_parameters.html" title="7.3.32. logical_parameters"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
63
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2 documentation</a> »</li>
|
64
64
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
65
65
|
<li class="nav-item nav-item-2"><a href="../command.html" accesskey="U">7.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -72,20 +72,16 @@
|
|
72
72
|
<div class="body" role="main">
|
73
73
|
|
74
74
|
<div class="section" id="logical-range-filter">
|
75
|
-
<h1>7.3.
|
75
|
+
<h1>7.3.33. <code class="docutils literal"><span class="pre">logical_range_filter</span></code><a class="headerlink" href="#logical-range-filter" title="Permalink to this headline">¶</a></h1>
|
76
76
|
<div class="section" id="summary">
|
77
|
-
<h2>7.3.
|
78
|
-
<div class="admonition note">
|
79
|
-
<p class="first admonition-title">Note</p>
|
80
|
-
<p class="last">This command is an experimental feature.</p>
|
81
|
-
</div>
|
77
|
+
<h2>7.3.33.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
|
82
78
|
<div class="versionadded">
|
83
79
|
<p><span class="versionmodified">New in version 5.0.0.</span></p>
|
84
80
|
</div>
|
85
81
|
<p>TODO: Write summary</p>
|
86
82
|
</div>
|
87
83
|
<div class="section" id="syntax">
|
88
|
-
<h2>7.3.
|
84
|
+
<h2>7.3.33.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
|
89
85
|
<p>This command takes many parameters.</p>
|
90
86
|
<p>The required parameters are <code class="docutils literal"><span class="pre">logical_table</span></code> and <code class="docutils literal"><span class="pre">shard_key</span></code>:</p>
|
91
87
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_range_filter
|
@@ -114,84 +110,84 @@ must specify parameter name.</p>
|
|
114
110
|
</div></blockquote>
|
115
111
|
</div>
|
116
112
|
<div class="section" id="usage">
|
117
|
-
<h2>7.3.
|
113
|
+
<h2>7.3.33.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
|
118
114
|
<p>Register <code class="docutils literal"><span class="pre">sharding</span></code> plugin to use <code class="docutils literal"><span class="pre">logical_range_filter</span></code> command in advance.</p>
|
119
115
|
<p>TODO: Add examples</p>
|
120
116
|
</div>
|
121
117
|
<div class="section" id="parameters">
|
122
|
-
<h2>7.3.
|
118
|
+
<h2>7.3.33.4. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
|
123
119
|
<p>This section describes parameters of <code class="docutils literal"><span class="pre">logical_range_filter</span></code>.</p>
|
124
|
-
<div class="section" id="required-
|
125
|
-
<h3>7.3.
|
120
|
+
<div class="section" id="required-parameters">
|
121
|
+
<h3>7.3.33.4.1. Required parameters<a class="headerlink" href="#required-parameters" title="Permalink to this headline">¶</a></h3>
|
126
122
|
<p>There are required parameters, <code class="docutils literal"><span class="pre">logical_table</span></code> and <code class="docutils literal"><span class="pre">shard_key</span></code>.</p>
|
127
123
|
<div class="section" id="logical-table">
|
128
|
-
<h4>7.3.
|
124
|
+
<h4>7.3.33.4.1.1. <code class="docutils literal"><span class="pre">logical_table</span></code><a class="headerlink" href="#logical-table" title="Permalink to this headline">¶</a></h4>
|
129
125
|
<p>Specifies logical table name. It means table name without "_YYYYMMDD" postfix.
|
130
126
|
If you use actual table such as "Logs_20150203", "Logs_20150203" and so on, logical table name is "Logs".</p>
|
131
127
|
<p>TODO: Add examples</p>
|
132
128
|
</div>
|
133
129
|
<div class="section" id="shard-key">
|
134
|
-
<h4>7.3.
|
130
|
+
<h4>7.3.33.4.1.2. <code class="docutils literal"><span class="pre">shard_key</span></code><a class="headerlink" href="#shard-key" title="Permalink to this headline">¶</a></h4>
|
135
131
|
<p>Specifies column name which is treated as shared key in each parted table.</p>
|
136
132
|
<p>TODO: Add examples</p>
|
137
133
|
</div>
|
138
134
|
</div>
|
139
135
|
<div class="section" id="optional-parameters">
|
140
|
-
<h3>7.3.
|
136
|
+
<h3>7.3.33.4.2. Optional parameters<a class="headerlink" href="#optional-parameters" title="Permalink to this headline">¶</a></h3>
|
141
137
|
<p>There are optional parameters.</p>
|
142
138
|
<div class="section" id="min">
|
143
|
-
<h4>7.3.
|
139
|
+
<h4>7.3.33.4.2.1. <code class="docutils literal"><span class="pre">min</span></code><a class="headerlink" href="#min" title="Permalink to this headline">¶</a></h4>
|
144
140
|
<p>Specifies the min value of <code class="docutils literal"><span class="pre">shard_key</span></code></p>
|
145
141
|
<p>TODO: Add examples</p>
|
146
142
|
</div>
|
147
143
|
<div class="section" id="min-border">
|
148
|
-
<h4>7.3.
|
144
|
+
<h4>7.3.33.4.2.2. <code class="docutils literal"><span class="pre">min_border</span></code><a class="headerlink" href="#min-border" title="Permalink to this headline">¶</a></h4>
|
149
145
|
<p>Specifies whether the min value of borderline must be include or not.
|
150
146
|
Specify <code class="docutils literal"><span class="pre">include</span></code> or <code class="docutils literal"><span class="pre">exclude</span></code> as the value of this parameter.</p>
|
151
147
|
<p>TODO: Add examples</p>
|
152
148
|
</div>
|
153
149
|
<div class="section" id="max">
|
154
|
-
<h4>7.3.
|
150
|
+
<h4>7.3.33.4.2.3. <code class="docutils literal"><span class="pre">max</span></code><a class="headerlink" href="#max" title="Permalink to this headline">¶</a></h4>
|
155
151
|
<p>Specifies the max value of <code class="docutils literal"><span class="pre">shard_key</span></code>.</p>
|
156
152
|
<p>TODO: Add examples</p>
|
157
153
|
</div>
|
158
154
|
<div class="section" id="max-border">
|
159
|
-
<h4>7.3.
|
155
|
+
<h4>7.3.33.4.2.4. <code class="docutils literal"><span class="pre">max_border</span></code><a class="headerlink" href="#max-border" title="Permalink to this headline">¶</a></h4>
|
160
156
|
<p>Specifies whether the max value of borderline must be include or not.
|
161
157
|
Specify <code class="docutils literal"><span class="pre">include</span></code> or <code class="docutils literal"><span class="pre">exclude</span></code> as the value of this parameter.</p>
|
162
158
|
<p>TODO: Add examples</p>
|
163
159
|
</div>
|
164
160
|
<div class="section" id="order">
|
165
|
-
<h4>7.3.
|
161
|
+
<h4>7.3.33.4.2.5. <code class="docutils literal"><span class="pre">order</span></code><a class="headerlink" href="#order" title="Permalink to this headline">¶</a></h4>
|
166
162
|
<p>TODO</p>
|
167
163
|
</div>
|
168
164
|
<div class="section" id="filter">
|
169
|
-
<h4>7.3.
|
165
|
+
<h4>7.3.33.4.2.6. <code class="docutils literal"><span class="pre">filter</span></code><a class="headerlink" href="#filter" title="Permalink to this headline">¶</a></h4>
|
170
166
|
<p>TODO</p>
|
171
167
|
</div>
|
172
168
|
<div class="section" id="offset">
|
173
|
-
<h4>7.3.
|
169
|
+
<h4>7.3.33.4.2.7. <code class="docutils literal"><span class="pre">offset</span></code><a class="headerlink" href="#offset" title="Permalink to this headline">¶</a></h4>
|
174
170
|
<p>TODO</p>
|
175
171
|
</div>
|
176
172
|
<div class="section" id="limit">
|
177
|
-
<h4>7.3.
|
173
|
+
<h4>7.3.33.4.2.8. <code class="docutils literal"><span class="pre">limit</span></code><a class="headerlink" href="#limit" title="Permalink to this headline">¶</a></h4>
|
178
174
|
<p>TODO</p>
|
179
175
|
</div>
|
180
176
|
<div class="section" id="output-columns">
|
181
|
-
<h4>7.3.
|
177
|
+
<h4>7.3.33.4.2.9. <code class="docutils literal"><span class="pre">output_columns</span></code><a class="headerlink" href="#output-columns" title="Permalink to this headline">¶</a></h4>
|
182
178
|
<p>TODO</p>
|
183
179
|
</div>
|
184
180
|
<div class="section" id="use-range-index">
|
185
|
-
<h4>7.3.
|
181
|
+
<h4>7.3.33.4.2.10. <code class="docutils literal"><span class="pre">use_range_index</span></code><a class="headerlink" href="#use-range-index" title="Permalink to this headline">¶</a></h4>
|
186
182
|
<p>Specifies whether range_index is used or not.
|
187
183
|
Note that it's a parameter for test. It should not be used for production.</p>
|
188
184
|
<p>TODO: Add examples</p>
|
189
185
|
</div>
|
190
186
|
</div>
|
191
187
|
<div class="section" id="cache-related-parameter">
|
192
|
-
<h3>7.3.
|
188
|
+
<h3>7.3.33.4.3. Cache related parameter<a class="headerlink" href="#cache-related-parameter" title="Permalink to this headline">¶</a></h3>
|
193
189
|
<div class="section" id="cache">
|
194
|
-
<span id="logical-range-filter-cache"></span><h4>7.3.
|
190
|
+
<span id="logical-range-filter-cache"></span><h4>7.3.33.4.3.1. <code class="docutils literal"><span class="pre">cache</span></code><a class="headerlink" href="#cache" title="Permalink to this headline">¶</a></h4>
|
195
191
|
<p>Specifies whether caching the result of this query or not.</p>
|
196
192
|
<p>If the result of this query is cached, the next same query returns
|
197
193
|
response quickly by using the cache.</p>
|
@@ -223,7 +219,7 @@ It's the default value.</td>
|
|
223
219
|
</div>
|
224
220
|
</div>
|
225
221
|
<div class="section" id="return-value">
|
226
|
-
<h2>7.3.
|
222
|
+
<h2>7.3.33.5. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2>
|
227
223
|
<p>TODO</p>
|
228
224
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[HEADER, LOGICAL_FILTERED]
|
229
225
|
</pre></div>
|
@@ -239,46 +235,46 @@ It's the default value.</td>
|
|
239
235
|
<div class="sphinxsidebarwrapper">
|
240
236
|
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
241
237
|
<ul>
|
242
|
-
<li><a class="reference internal" href="#">7.3.
|
243
|
-
<li><a class="reference internal" href="#summary">7.3.
|
244
|
-
<li><a class="reference internal" href="#syntax">7.3.
|
245
|
-
<li><a class="reference internal" href="#usage">7.3.
|
246
|
-
<li><a class="reference internal" href="#parameters">7.3.
|
247
|
-
<li><a class="reference internal" href="#required-
|
248
|
-
<li><a class="reference internal" href="#logical-table">7.3.
|
249
|
-
<li><a class="reference internal" href="#shard-key">7.3.
|
238
|
+
<li><a class="reference internal" href="#">7.3.33. <code class="docutils literal"><span class="pre">logical_range_filter</span></code></a><ul>
|
239
|
+
<li><a class="reference internal" href="#summary">7.3.33.1. Summary</a></li>
|
240
|
+
<li><a class="reference internal" href="#syntax">7.3.33.2. Syntax</a></li>
|
241
|
+
<li><a class="reference internal" href="#usage">7.3.33.3. Usage</a></li>
|
242
|
+
<li><a class="reference internal" href="#parameters">7.3.33.4. Parameters</a><ul>
|
243
|
+
<li><a class="reference internal" href="#required-parameters">7.3.33.4.1. Required parameters</a><ul>
|
244
|
+
<li><a class="reference internal" href="#logical-table">7.3.33.4.1.1. <code class="docutils literal"><span class="pre">logical_table</span></code></a></li>
|
245
|
+
<li><a class="reference internal" href="#shard-key">7.3.33.4.1.2. <code class="docutils literal"><span class="pre">shard_key</span></code></a></li>
|
250
246
|
</ul>
|
251
247
|
</li>
|
252
|
-
<li><a class="reference internal" href="#optional-parameters">7.3.
|
253
|
-
<li><a class="reference internal" href="#min">7.3.
|
254
|
-
<li><a class="reference internal" href="#min-border">7.3.
|
255
|
-
<li><a class="reference internal" href="#max">7.3.
|
256
|
-
<li><a class="reference internal" href="#max-border">7.3.
|
257
|
-
<li><a class="reference internal" href="#order">7.3.
|
258
|
-
<li><a class="reference internal" href="#filter">7.3.
|
259
|
-
<li><a class="reference internal" href="#offset">7.3.
|
260
|
-
<li><a class="reference internal" href="#limit">7.3.
|
261
|
-
<li><a class="reference internal" href="#output-columns">7.3.
|
262
|
-
<li><a class="reference internal" href="#use-range-index">7.3.
|
248
|
+
<li><a class="reference internal" href="#optional-parameters">7.3.33.4.2. Optional parameters</a><ul>
|
249
|
+
<li><a class="reference internal" href="#min">7.3.33.4.2.1. <code class="docutils literal"><span class="pre">min</span></code></a></li>
|
250
|
+
<li><a class="reference internal" href="#min-border">7.3.33.4.2.2. <code class="docutils literal"><span class="pre">min_border</span></code></a></li>
|
251
|
+
<li><a class="reference internal" href="#max">7.3.33.4.2.3. <code class="docutils literal"><span class="pre">max</span></code></a></li>
|
252
|
+
<li><a class="reference internal" href="#max-border">7.3.33.4.2.4. <code class="docutils literal"><span class="pre">max_border</span></code></a></li>
|
253
|
+
<li><a class="reference internal" href="#order">7.3.33.4.2.5. <code class="docutils literal"><span class="pre">order</span></code></a></li>
|
254
|
+
<li><a class="reference internal" href="#filter">7.3.33.4.2.6. <code class="docutils literal"><span class="pre">filter</span></code></a></li>
|
255
|
+
<li><a class="reference internal" href="#offset">7.3.33.4.2.7. <code class="docutils literal"><span class="pre">offset</span></code></a></li>
|
256
|
+
<li><a class="reference internal" href="#limit">7.3.33.4.2.8. <code class="docutils literal"><span class="pre">limit</span></code></a></li>
|
257
|
+
<li><a class="reference internal" href="#output-columns">7.3.33.4.2.9. <code class="docutils literal"><span class="pre">output_columns</span></code></a></li>
|
258
|
+
<li><a class="reference internal" href="#use-range-index">7.3.33.4.2.10. <code class="docutils literal"><span class="pre">use_range_index</span></code></a></li>
|
263
259
|
</ul>
|
264
260
|
</li>
|
265
|
-
<li><a class="reference internal" href="#cache-related-parameter">7.3.
|
266
|
-
<li><a class="reference internal" href="#cache">7.3.
|
261
|
+
<li><a class="reference internal" href="#cache-related-parameter">7.3.33.4.3. Cache related parameter</a><ul>
|
262
|
+
<li><a class="reference internal" href="#cache">7.3.33.4.3.1. <code class="docutils literal"><span class="pre">cache</span></code></a></li>
|
267
263
|
</ul>
|
268
264
|
</li>
|
269
265
|
</ul>
|
270
266
|
</li>
|
271
|
-
<li><a class="reference internal" href="#return-value">7.3.
|
267
|
+
<li><a class="reference internal" href="#return-value">7.3.33.5. Return value</a></li>
|
272
268
|
</ul>
|
273
269
|
</li>
|
274
270
|
</ul>
|
275
271
|
|
276
272
|
<h4>Previous topic</h4>
|
277
273
|
<p class="topless"><a href="logical_parameters.html"
|
278
|
-
title="previous chapter">7.3.
|
274
|
+
title="previous chapter">7.3.32. <code class="docutils literal"><span class="pre">logical_parameters</span></code></a></p>
|
279
275
|
<h4>Next topic</h4>
|
280
276
|
<p class="topless"><a href="logical_select.html"
|
281
|
-
title="next chapter">7.3.
|
277
|
+
title="next chapter">7.3.34. <code class="docutils literal"><span class="pre">logical_select</span></code></a></p>
|
282
278
|
<div role="note" aria-label="source link">
|
283
279
|
<h3>This Page</h3>
|
284
280
|
<ul class="this-page-menu">
|
@@ -294,9 +290,6 @@ It's the default value.</td>
|
|
294
290
|
<input type="hidden" name="check_keywords" value="yes" />
|
295
291
|
<input type="hidden" name="area" value="default" />
|
296
292
|
</form>
|
297
|
-
<p class="searchtip" style="font-size: 90%">
|
298
|
-
Enter search terms or a module, class or function name.
|
299
|
-
</p>
|
300
293
|
</div>
|
301
294
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
302
295
|
</div>
|
@@ -310,12 +303,12 @@ It's the default value.</td>
|
|
310
303
|
<a href="../../genindex.html" title="General Index"
|
311
304
|
>index</a></li>
|
312
305
|
<li class="right" >
|
313
|
-
<a href="logical_select.html" title="7.3.
|
306
|
+
<a href="logical_select.html" title="7.3.34. logical_select"
|
314
307
|
>next</a> |</li>
|
315
308
|
<li class="right" >
|
316
|
-
<a href="logical_parameters.html" title="7.3.
|
309
|
+
<a href="logical_parameters.html" title="7.3.32. logical_parameters"
|
317
310
|
>previous</a> |</li>
|
318
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
311
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2 documentation</a> »</li>
|
319
312
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
320
313
|
<li class="nav-item nav-item-2"><a href="../command.html" >7.3. Command</a> »</li>
|
321
314
|
</ul>
|
@@ -3,11 +3,11 @@
|
|
3
3
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
4
|
|
5
5
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.3.
|
10
|
+
<title>7.3.34. logical_select — Groonga v6.0.2 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '
|
18
|
+
VERSION: '6.0.2',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,10 +25,10 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga
|
28
|
+
<link rel="top" title="Groonga v6.0.2 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="7.3. Command" href="../command.html" />
|
30
|
-
<link rel="next" title="7.3.
|
31
|
-
<link rel="prev" title="7.3.
|
30
|
+
<link rel="next" title="7.3.35. logical_shard_list" href="logical_shard_list.html" />
|
31
|
+
<link rel="prev" title="7.3.33. logical_range_filter" href="logical_range_filter.html" />
|
32
32
|
</head>
|
33
33
|
<body role="document">
|
34
34
|
<div class="header">
|
@@ -55,12 +55,12 @@
|
|
55
55
|
<a href="../../genindex.html" title="General Index"
|
56
56
|
accesskey="I">index</a></li>
|
57
57
|
<li class="right" >
|
58
|
-
<a href="logical_shard_list.html" title="7.3.
|
58
|
+
<a href="logical_shard_list.html" title="7.3.35. logical_shard_list"
|
59
59
|
accesskey="N">next</a> |</li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="logical_range_filter.html" title="7.3.
|
61
|
+
<a href="logical_range_filter.html" title="7.3.33. logical_range_filter"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
63
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2 documentation</a> »</li>
|
64
64
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
65
65
|
<li class="nav-item nav-item-2"><a href="../command.html" accesskey="U">7.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -72,24 +72,20 @@
|
|
72
72
|
<div class="body" role="main">
|
73
73
|
|
74
74
|
<div class="section" id="logical-select">
|
75
|
-
<h1>7.3.
|
75
|
+
<h1>7.3.34. <code class="docutils literal"><span class="pre">logical_select</span></code><a class="headerlink" href="#logical-select" title="Permalink to this headline">¶</a></h1>
|
76
76
|
<div class="section" id="summary">
|
77
|
-
<h2>7.3.
|
78
|
-
<div class="admonition note">
|
79
|
-
<p class="first admonition-title">Note</p>
|
80
|
-
<p class="last">This command is an experimental feature.</p>
|
81
|
-
</div>
|
77
|
+
<h2>7.3.34.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
|
82
78
|
<div class="versionadded">
|
83
79
|
<p><span class="versionmodified">New in version 5.0.5.</span></p>
|
84
80
|
</div>
|
85
81
|
<p><code class="docutils literal"><span class="pre">logical_select</span></code> is a sharding version of
|
86
|
-
<a class="reference internal" href="select.html"><
|
82
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. <code class="docutils literal"><span class="pre">logical_select</span></code> searches records from multiple
|
87
83
|
tables and outputs them.</p>
|
88
|
-
<p>You need to <a class="reference internal" href="plugin_register.html"><
|
84
|
+
<p>You need to <a class="reference internal" href="plugin_register.html"><span class="doc">plugin_register</span></a> <code class="docutils literal"><span class="pre">sharding</span></code> plugin because
|
89
85
|
<code class="docutils literal"><span class="pre">logical_select</span></code> is included in <code class="docutils literal"><span class="pre">sharding</span></code> plugin.</p>
|
90
86
|
</div>
|
91
87
|
<div class="section" id="syntax">
|
92
|
-
<h2>7.3.
|
88
|
+
<h2>7.3.34.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
|
93
89
|
<p>This command takes many parameters.</p>
|
94
90
|
<p>The required parameters are <code class="docutils literal"><span class="pre">logical_table</span></code> and <code class="docutils literal"><span class="pre">shard_key</span></code>. Other
|
95
91
|
parameters are optional:</p>
|
@@ -147,11 +143,11 @@ drilldown:</p>
|
|
147
143
|
</div></blockquote>
|
148
144
|
</div>
|
149
145
|
<div class="section" id="differences-from-select">
|
150
|
-
<h2>7.3.
|
146
|
+
<h2>7.3.34.3. Differences from <code class="docutils literal"><span class="pre">select</span></code><a class="headerlink" href="#differences-from-select" title="Permalink to this headline">¶</a></h2>
|
151
147
|
<p>Most of <code class="docutils literal"><span class="pre">logical_select</span></code> features can be used like corresponding
|
152
|
-
<a class="reference internal" href="select.html"><
|
148
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a> features. For example, parameter name is same, output
|
153
149
|
format is same and so on.</p>
|
154
|
-
<p>But there are some differences from <a class="reference internal" href="select.html"><
|
150
|
+
<p>But there are some differences from <a class="reference internal" href="select.html"><span class="doc">select</span></a>:</p>
|
155
151
|
<blockquote>
|
156
152
|
<div><ul class="simple">
|
157
153
|
<li><code class="docutils literal"><span class="pre">logical_table</span></code> and <code class="docutils literal"><span class="pre">shard_key</span></code> parameters are required
|
@@ -171,7 +167,7 @@ work with multiple shards. It works with one shard. <code class="docutils litera
|
|
171
167
|
</div></blockquote>
|
172
168
|
</div>
|
173
169
|
<div class="section" id="usage">
|
174
|
-
<h2>7.3.
|
170
|
+
<h2>7.3.34.4. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
|
175
171
|
<p>Let's learn about <code class="docutils literal"><span class="pre">logical_select</span></code> usage with examples. This section
|
176
172
|
shows many popular usages.</p>
|
177
173
|
<p>You need to register <code class="docutils literal"><span class="pre">sharding</span></code> plugin because <code class="docutils literal"><span class="pre">logical_select</span></code> is
|
@@ -274,18 +270,18 @@ column are indexed using <code class="docutils literal"><span class="pre">TokenB
|
|
274
270
|
fulltext search ready.</p>
|
275
271
|
<p>OK. The schema and data for examples are ready.</p>
|
276
272
|
<div class="section" id="simple-usage">
|
277
|
-
<h3>7.3.
|
273
|
+
<h3>7.3.34.4.1. Simple usage<a class="headerlink" href="#simple-usage" title="Permalink to this headline">¶</a></h3>
|
278
274
|
<p>TODO</p>
|
279
275
|
</div>
|
280
276
|
</div>
|
281
277
|
<div class="section" id="parameters">
|
282
|
-
<h2>7.3.
|
278
|
+
<h2>7.3.34.5. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
|
283
279
|
<p>This section describes parameters of <code class="docutils literal"><span class="pre">logical_select</span></code>.</p>
|
284
|
-
<div class="section" id="required-
|
285
|
-
<h3>7.3.
|
280
|
+
<div class="section" id="required-parameters">
|
281
|
+
<h3>7.3.34.5.1. Required parameters<a class="headerlink" href="#required-parameters" title="Permalink to this headline">¶</a></h3>
|
286
282
|
<p>There are required parameters, <code class="docutils literal"><span class="pre">logical_table</span></code> and <code class="docutils literal"><span class="pre">shard_key</span></code>.</p>
|
287
283
|
<div class="section" id="logical-table">
|
288
|
-
<span id="logical-select-logical-table"></span><h4>7.3.
|
284
|
+
<span id="logical-select-logical-table"></span><h4>7.3.34.5.1.1. <code class="docutils literal"><span class="pre">logical_table</span></code><a class="headerlink" href="#logical-table" title="Permalink to this headline">¶</a></h4>
|
289
285
|
<p>Specifies logical table name. It means table name without
|
290
286
|
<code class="docutils literal"><span class="pre">_YYYYMMDD</span></code> postfix. If you use actual table such as
|
291
287
|
<code class="docutils literal"><span class="pre">Entries_20150708</span></code>, <code class="docutils literal"><span class="pre">Entries_20150709</span></code> and so on, logical table
|
@@ -398,19 +394,19 @@ name is <code class="docutils literal"><span class="pre">Entries</span></code>.<
|
|
398
394
|
</div>
|
399
395
|
</div>
|
400
396
|
<div class="section" id="shard-key">
|
401
|
-
<span id="logical-select-shard-key"></span><h4>7.3.
|
397
|
+
<span id="logical-select-shard-key"></span><h4>7.3.34.5.1.2. <code class="docutils literal"><span class="pre">shard_key</span></code><a class="headerlink" href="#shard-key" title="Permalink to this headline">¶</a></h4>
|
402
398
|
<p>Specifies column name which is treated as shared key. Shard key is a
|
403
399
|
column that stores data that is used for distributing records to
|
404
400
|
suitable shards.</p>
|
405
401
|
<p>Shard key must be <code class="docutils literal"><span class="pre">Time</span></code> type for now.</p>
|
406
|
-
<p>See <a class="reference internal" href="#logical-select-logical-table"><span>logical_table</span></a> how to specify <code class="docutils literal"><span class="pre">shard_key</span></code>.</p>
|
402
|
+
<p>See <a class="reference internal" href="#logical-select-logical-table"><span class="std std-ref">logical_table</span></a> how to specify <code class="docutils literal"><span class="pre">shard_key</span></code>.</p>
|
407
403
|
</div>
|
408
404
|
</div>
|
409
405
|
<div class="section" id="optional-parameters">
|
410
|
-
<h3>7.3.
|
406
|
+
<h3>7.3.34.5.2. Optional parameters<a class="headerlink" href="#optional-parameters" title="Permalink to this headline">¶</a></h3>
|
411
407
|
<p>There are optional parameters.</p>
|
412
408
|
<div class="section" id="min">
|
413
|
-
<span id="logical-select-min"></span><h4>7.3.
|
409
|
+
<span id="logical-select-min"></span><h4>7.3.34.5.2.1. <code class="docutils literal"><span class="pre">min</span></code><a class="headerlink" href="#min" title="Permalink to this headline">¶</a></h4>
|
414
410
|
<p>Specifies the minimum value of <code class="docutils literal"><span class="pre">shard_key</span></code> column. If shard doesn't
|
415
411
|
have any matched records, the shard isn't searched.</p>
|
416
412
|
<p>For example, <code class="docutils literal"><span class="pre">min</span></code> is <code class="docutils literal"><span class="pre">"2015/07/09</span> <span class="pre">00:00:00"</span></code>, <code class="docutils literal"><span class="pre">Entry_20150708</span></code>
|
@@ -483,8 +479,8 @@ table. <code class="docutils literal"><span class="pre">Entry_20150708</span></c
|
|
483
479
|
</div>
|
484
480
|
</div>
|
485
481
|
<div class="section" id="min-border">
|
486
|
-
<span id="logical-select-min-border"></span><h4>7.3.
|
487
|
-
<p>Specifies whether the minimum value is
|
482
|
+
<span id="logical-select-min-border"></span><h4>7.3.34.5.2.2. <code class="docutils literal"><span class="pre">min_border</span></code><a class="headerlink" href="#min-border" title="Permalink to this headline">¶</a></h4>
|
483
|
+
<p>Specifies whether the minimum value is included or not. Here is
|
488
484
|
available values.</p>
|
489
485
|
<table border="1" class="docutils">
|
490
486
|
<colgroup>
|
@@ -566,7 +562,7 @@ available values.</p>
|
|
566
562
|
</div>
|
567
563
|
</div>
|
568
564
|
<div class="section" id="max">
|
569
|
-
<span id="logical-select-max"></span><h4>7.3.
|
565
|
+
<span id="logical-select-max"></span><h4>7.3.34.5.2.3. <code class="docutils literal"><span class="pre">max</span></code><a class="headerlink" href="#max" title="Permalink to this headline">¶</a></h4>
|
570
566
|
<p>Specifies the maximum value of <code class="docutils literal"><span class="pre">shard_key</span></code> column. If shard doesn't
|
571
567
|
have any matched records, the shard isn't searched.</p>
|
572
568
|
<p>For example, <code class="docutils literal"><span class="pre">max</span></code> is <code class="docutils literal"><span class="pre">"2015/07/08</span> <span class="pre">23:59:59"</span></code>, <code class="docutils literal"><span class="pre">Entry_20150709</span></code>
|
@@ -647,8 +643,8 @@ table. <code class="docutils literal"><span class="pre">Entry_20150709</span></c
|
|
647
643
|
</div>
|
648
644
|
</div>
|
649
645
|
<div class="section" id="max-border">
|
650
|
-
<span id="logical-select-max-border"></span><h4>7.3.
|
651
|
-
<p>Specifies whether the maximum value is
|
646
|
+
<span id="logical-select-max-border"></span><h4>7.3.34.5.2.4. <code class="docutils literal"><span class="pre">max_border</span></code><a class="headerlink" href="#max-border" title="Permalink to this headline">¶</a></h4>
|
647
|
+
<p>Specifies whether the maximum value is included or not. Here is
|
652
648
|
available values.</p>
|
653
649
|
<table border="1" class="docutils">
|
654
650
|
<colgroup>
|
@@ -747,23 +743,23 @@ available values.</p>
|
|
747
743
|
</div>
|
748
744
|
</div>
|
749
745
|
<div class="section" id="search-related-parameters">
|
750
|
-
<span id="logical-select-search-related-parameters"></span><h3>7.3.
|
751
|
-
<p><code class="docutils literal"><span class="pre">logical_select</span></code> provides <a class="reference internal" href="select.html"><
|
746
|
+
<span id="logical-select-search-related-parameters"></span><h3>7.3.34.5.3. Search related parameters<a class="headerlink" href="#search-related-parameters" title="Permalink to this headline">¶</a></h3>
|
747
|
+
<p><code class="docutils literal"><span class="pre">logical_select</span></code> provides <a class="reference internal" href="select.html"><span class="doc">select</span></a> compatible search related
|
752
748
|
parameters.</p>
|
753
749
|
<p><code class="docutils literal"><span class="pre">match_columns</span></code> and <code class="docutils literal"><span class="pre">query</span></code> aren't supported yet. <code class="docutils literal"><span class="pre">filter</span></code> is
|
754
750
|
only supported for now.</p>
|
755
751
|
<div class="section" id="match-columns">
|
756
|
-
<span id="logical-select-match-columns"></span><h4>7.3.
|
752
|
+
<span id="logical-select-match-columns"></span><h4>7.3.34.5.3.1. <code class="docutils literal"><span class="pre">match_columns</span></code><a class="headerlink" href="#match-columns" title="Permalink to this headline">¶</a></h4>
|
757
753
|
<p>Not implemented yet.</p>
|
758
754
|
</div>
|
759
755
|
<div class="section" id="query">
|
760
|
-
<span id="logical-select-query"></span><h4>7.3.
|
756
|
+
<span id="logical-select-query"></span><h4>7.3.34.5.3.2. <code class="docutils literal"><span class="pre">query</span></code><a class="headerlink" href="#query" title="Permalink to this headline">¶</a></h4>
|
761
757
|
<p>Not implemented yet.</p>
|
762
758
|
</div>
|
763
759
|
<div class="section" id="filter">
|
764
|
-
<span id="logical-select-filter"></span><h4>7.3.
|
765
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-filter"><span>filter</span></a> in <a class="reference internal" href="select.html"><
|
766
|
-
<a class="reference internal" href="select.html#select-filter"><span>filter</span></a> for details.</p>
|
760
|
+
<span id="logical-select-filter"></span><h4>7.3.34.5.3.3. <code class="docutils literal"><span class="pre">filter</span></code><a class="headerlink" href="#filter" title="Permalink to this headline">¶</a></h4>
|
761
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-filter"><span class="std std-ref">filter</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
762
|
+
<a class="reference internal" href="select.html#select-filter"><span class="std std-ref">filter</span></a> for details.</p>
|
767
763
|
<p>Here is an example:</p>
|
768
764
|
<p>Execution example:</p>
|
769
765
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -839,27 +835,27 @@ only supported for now.</p>
|
|
839
835
|
</div>
|
840
836
|
</div>
|
841
837
|
<div class="section" id="advanced-search-parameters">
|
842
|
-
<span id="logical-select-advanced-search-parameters"></span><h3>7.3.
|
838
|
+
<span id="logical-select-advanced-search-parameters"></span><h3>7.3.34.5.4. Advanced search parameters<a class="headerlink" href="#advanced-search-parameters" title="Permalink to this headline">¶</a></h3>
|
843
839
|
<p><code class="docutils literal"><span class="pre">logical_select</span></code> doesn't implement advanced search parameters yet.</p>
|
844
840
|
<div class="section" id="match-escalation-threshold">
|
845
|
-
<span id="logical-select-match-escalation-threshold"></span><h4>7.3.
|
841
|
+
<span id="logical-select-match-escalation-threshold"></span><h4>7.3.34.5.4.1. <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code><a class="headerlink" href="#match-escalation-threshold" title="Permalink to this headline">¶</a></h4>
|
846
842
|
<p>Not implemented yet.</p>
|
847
843
|
</div>
|
848
844
|
<div class="section" id="query-flags">
|
849
|
-
<span id="logical-select-query-flags"></span><h4>7.3.
|
845
|
+
<span id="logical-select-query-flags"></span><h4>7.3.34.5.4.2. <code class="docutils literal"><span class="pre">query_flags</span></code><a class="headerlink" href="#query-flags" title="Permalink to this headline">¶</a></h4>
|
850
846
|
<p>Not implemented yet.</p>
|
851
847
|
</div>
|
852
848
|
<div class="section" id="query-expander">
|
853
|
-
<span id="logical-select-query-expander"></span><h4>7.3.
|
849
|
+
<span id="logical-select-query-expander"></span><h4>7.3.34.5.4.3. <code class="docutils literal"><span class="pre">query_expander</span></code><a class="headerlink" href="#query-expander" title="Permalink to this headline">¶</a></h4>
|
854
850
|
<p>Not implemented yet.</p>
|
855
851
|
</div>
|
856
852
|
</div>
|
857
853
|
<div class="section" id="output-related-parameters">
|
858
|
-
<h3>7.3.
|
854
|
+
<h3>7.3.34.5.5. Output related parameters<a class="headerlink" href="#output-related-parameters" title="Permalink to this headline">¶</a></h3>
|
859
855
|
<div class="section" id="output-columns">
|
860
|
-
<span id="logical-select-output-columns"></span><h4>7.3.
|
861
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-output-columns"><span>output_columns</span></a> in <a class="reference internal" href="select.html"><
|
862
|
-
<a class="reference internal" href="select.html#select-output-columns"><span>output_columns</span></a> for details.</p>
|
856
|
+
<span id="logical-select-output-columns"></span><h4>7.3.34.5.5.1. <code class="docutils literal"><span class="pre">output_columns</span></code><a class="headerlink" href="#output-columns" title="Permalink to this headline">¶</a></h4>
|
857
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-output-columns"><span class="std std-ref">output_columns</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
858
|
+
<a class="reference internal" href="select.html#select-output-columns"><span class="std std-ref">output_columns</span></a> for details.</p>
|
863
859
|
<p>Here is an example:</p>
|
864
860
|
<p>Execution example:</p>
|
865
861
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -941,9 +937,9 @@ only supported for now.</p>
|
|
941
937
|
</div>
|
942
938
|
</div>
|
943
939
|
<div class="section" id="sortby">
|
944
|
-
<span id="logical-select-sortby"></span><h4>7.3.
|
945
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-sortby"><span>sortby</span></a> in <a class="reference internal" href="select.html"><
|
946
|
-
<a class="reference internal" href="select.html#select-sortby"><span>sortby</span></a> for details.</p>
|
940
|
+
<span id="logical-select-sortby"></span><h4>7.3.34.5.5.2. <code class="docutils literal"><span class="pre">sortby</span></code><a class="headerlink" href="#sortby" title="Permalink to this headline">¶</a></h4>
|
941
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-sortby"><span class="std std-ref">sortby</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
942
|
+
<a class="reference internal" href="select.html#select-sortby"><span class="std std-ref">sortby</span></a> for details.</p>
|
947
943
|
<p><code class="docutils literal"><span class="pre">sortby</span></code> has a limitation. It works only when the number of search
|
948
944
|
target shards is one. If the number of search target shards is larger
|
949
945
|
than one, <code class="docutils literal"><span class="pre">sortby</span></code> doesn't work.</p>
|
@@ -1025,9 +1021,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1025
1021
|
</div>
|
1026
1022
|
</div>
|
1027
1023
|
<div class="section" id="offset">
|
1028
|
-
<span id="logical-select-offset"></span><h4>7.3.
|
1029
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-offset"><span>offset</span></a> in <a class="reference internal" href="select.html"><
|
1030
|
-
<a class="reference internal" href="select.html#select-offset"><span>offset</span></a> for details.</p>
|
1024
|
+
<span id="logical-select-offset"></span><h4>7.3.34.5.5.3. <code class="docutils literal"><span class="pre">offset</span></code><a class="headerlink" href="#offset" title="Permalink to this headline">¶</a></h4>
|
1025
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-offset"><span class="std std-ref">offset</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
1026
|
+
<a class="reference internal" href="select.html#select-offset"><span class="std std-ref">offset</span></a> for details.</p>
|
1031
1027
|
<p>Here is an example:</p>
|
1032
1028
|
<p>Execution example:</p>
|
1033
1029
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1102,9 +1098,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1102
1098
|
</div>
|
1103
1099
|
</div>
|
1104
1100
|
<div class="section" id="limit">
|
1105
|
-
<span id="logical-select-limit"></span><h4>7.3.
|
1106
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-limit"><span>limit</span></a> in <a class="reference internal" href="select.html"><
|
1107
|
-
<a class="reference internal" href="select.html#select-limit"><span>limit</span></a> for details.</p>
|
1101
|
+
<span id="logical-select-limit"></span><h4>7.3.34.5.5.4. <code class="docutils literal"><span class="pre">limit</span></code><a class="headerlink" href="#limit" title="Permalink to this headline">¶</a></h4>
|
1102
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-limit"><span class="std std-ref">limit</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
1103
|
+
<a class="reference internal" href="select.html#select-limit"><span class="std std-ref">limit</span></a> for details.</p>
|
1108
1104
|
<p>Here is an example:</p>
|
1109
1105
|
<p>Execution example:</p>
|
1110
1106
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1171,18 +1167,18 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1171
1167
|
</div>
|
1172
1168
|
</div>
|
1173
1169
|
<div class="section" id="scorer">
|
1174
|
-
<span id="logical-select-scorer"></span><h4>7.3.
|
1170
|
+
<span id="logical-select-scorer"></span><h4>7.3.34.5.5.5. <code class="docutils literal"><span class="pre">scorer</span></code><a class="headerlink" href="#scorer" title="Permalink to this headline">¶</a></h4>
|
1175
1171
|
<p>Not implemented yet.</p>
|
1176
1172
|
</div>
|
1177
1173
|
</div>
|
1178
1174
|
<div class="section" id="drilldown-related-parameters">
|
1179
|
-
<span id="logical-select-drilldown-related-parameters"></span><h3>7.3.
|
1180
|
-
<p>All drilldown related parameters in <a class="reference internal" href="select.html"><
|
1181
|
-
<a class="reference internal" href="select.html#select-drilldown-related-parameters"><span>Drilldown related parameters</span></a> for details.</p>
|
1175
|
+
<span id="logical-select-drilldown-related-parameters"></span><h3>7.3.34.5.6. Drilldown related parameters<a class="headerlink" href="#drilldown-related-parameters" title="Permalink to this headline">¶</a></h3>
|
1176
|
+
<p>All drilldown related parameters in <a class="reference internal" href="select.html"><span class="doc">select</span></a> are supported. See
|
1177
|
+
<a class="reference internal" href="select.html#select-drilldown-related-parameters"><span class="std std-ref">Drilldown related parameters</span></a> for details.</p>
|
1182
1178
|
<div class="section" id="drilldown">
|
1183
|
-
<span id="logical-select-drilldown"></span><h4>7.3.
|
1184
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown"><span>drilldown</span></a> in <a class="reference internal" href="select.html"><
|
1185
|
-
<a class="reference internal" href="select.html#select-drilldown"><span>drilldown</span></a> for details.</p>
|
1179
|
+
<span id="logical-select-drilldown"></span><h4>7.3.34.5.6.1. <code class="docutils literal"><span class="pre">drilldown</span></code><a class="headerlink" href="#drilldown" title="Permalink to this headline">¶</a></h4>
|
1180
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown"><span class="std std-ref">drilldown</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
1181
|
+
<a class="reference internal" href="select.html#select-drilldown"><span class="std std-ref">drilldown</span></a> for details.</p>
|
1186
1182
|
<p>Here is an example:</p>
|
1187
1183
|
<p>Execution example:</p>
|
1188
1184
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1265,9 +1261,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1265
1261
|
</div>
|
1266
1262
|
</div>
|
1267
1263
|
<div class="section" id="drilldown-sortby">
|
1268
|
-
<span id="logical-select-drilldown-sortby"></span><h4>7.3.
|
1269
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-sortby"><span>drilldown_sortby</span></a> in <a class="reference internal" href="select.html"><
|
1270
|
-
<a class="reference internal" href="select.html#select-drilldown-sortby"><span>drilldown_sortby</span></a> for details.</p>
|
1264
|
+
<span id="logical-select-drilldown-sortby"></span><h4>7.3.34.5.6.2. <code class="docutils literal"><span class="pre">drilldown_sortby</span></code><a class="headerlink" href="#drilldown-sortby" title="Permalink to this headline">¶</a></h4>
|
1265
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-sortby"><span class="std std-ref">drilldown_sortby</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
1266
|
+
<a class="reference internal" href="select.html#select-drilldown-sortby"><span class="std std-ref">drilldown_sortby</span></a> for details.</p>
|
1271
1267
|
<p>Here is an example:</p>
|
1272
1268
|
<p>Execution example:</p>
|
1273
1269
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1328,9 +1324,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1328
1324
|
</div>
|
1329
1325
|
</div>
|
1330
1326
|
<div class="section" id="drilldown-output-columns">
|
1331
|
-
<span id="logical-select-drilldown-output-columns"></span><h4>7.3.
|
1332
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-output-columns"><span>drilldown_output_columns</span></a> in
|
1333
|
-
<a class="reference internal" href="select.html"><
|
1327
|
+
<span id="logical-select-drilldown-output-columns"></span><h4>7.3.34.5.6.3. <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code><a class="headerlink" href="#drilldown-output-columns" title="Permalink to this headline">¶</a></h4>
|
1328
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a> in
|
1329
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. See <a class="reference internal" href="select.html#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a> for details.</p>
|
1334
1330
|
<p>Here is an example:</p>
|
1335
1331
|
<p>Execution example:</p>
|
1336
1332
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1384,9 +1380,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1384
1380
|
</div>
|
1385
1381
|
</div>
|
1386
1382
|
<div class="section" id="drilldown-offset">
|
1387
|
-
<span id="logical-select-drilldown-offset"></span><h4>7.3.
|
1388
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-offset"><span>drilldown_offset</span></a> in <a class="reference internal" href="select.html"><
|
1389
|
-
<a class="reference internal" href="select.html#select-drilldown-offset"><span>drilldown_offset</span></a> for details.</p>
|
1383
|
+
<span id="logical-select-drilldown-offset"></span><h4>7.3.34.5.6.4. <code class="docutils literal"><span class="pre">drilldown_offset</span></code><a class="headerlink" href="#drilldown-offset" title="Permalink to this headline">¶</a></h4>
|
1384
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-offset"><span class="std std-ref">drilldown_offset</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
1385
|
+
<a class="reference internal" href="select.html#select-drilldown-offset"><span class="std std-ref">drilldown_offset</span></a> for details.</p>
|
1390
1386
|
<p>Here is an example:</p>
|
1391
1387
|
<p>Execution example:</p>
|
1392
1388
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1443,9 +1439,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1443
1439
|
</div>
|
1444
1440
|
</div>
|
1445
1441
|
<div class="section" id="drilldown-limit">
|
1446
|
-
<span id="logical-select-drilldown-limit"></span><h4>7.3.
|
1447
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-limit"><span>drilldown_limit</span></a> in <a class="reference internal" href="select.html"><
|
1448
|
-
<a class="reference internal" href="select.html#select-drilldown-limit"><span>drilldown_limit</span></a> for details.</p>
|
1442
|
+
<span id="logical-select-drilldown-limit"></span><h4>7.3.34.5.6.5. <code class="docutils literal"><span class="pre">drilldown_limit</span></code><a class="headerlink" href="#drilldown-limit" title="Permalink to this headline">¶</a></h4>
|
1443
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-limit"><span class="std std-ref">drilldown_limit</span></a> in <a class="reference internal" href="select.html"><span class="doc">select</span></a>. See
|
1444
|
+
<a class="reference internal" href="select.html#select-drilldown-limit"><span class="std std-ref">drilldown_limit</span></a> for details.</p>
|
1449
1445
|
<p>Here is an example:</p>
|
1450
1446
|
<p>Execution example:</p>
|
1451
1447
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1502,9 +1498,9 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1502
1498
|
</div>
|
1503
1499
|
</div>
|
1504
1500
|
<div class="section" id="drilldown-calc-types">
|
1505
|
-
<span id="logical-select-drilldown-calc-types"></span><h4>7.3.
|
1506
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-calc-types"><span>drilldown_calc_types</span></a> in
|
1507
|
-
<a class="reference internal" href="select.html"><
|
1501
|
+
<span id="logical-select-drilldown-calc-types"></span><h4>7.3.34.5.6.6. <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code><a class="headerlink" href="#drilldown-calc-types" title="Permalink to this headline">¶</a></h4>
|
1502
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a> in
|
1503
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. See <a class="reference internal" href="select.html#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a> for details.</p>
|
1508
1504
|
<p>Here is an example:</p>
|
1509
1505
|
<p>Execution example:</p>
|
1510
1506
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1619,16 +1615,16 @@ than one, <code class="docutils literal"><span class="pre">sortby</span></code>
|
|
1619
1615
|
</div>
|
1620
1616
|
</div>
|
1621
1617
|
<div class="section" id="drilldown-calc-target">
|
1622
|
-
<span id="logical-select-drilldown-calc-target"></span><h4>7.3.
|
1623
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-calc-target"><span>drilldown_calc_target</span></a> in
|
1624
|
-
<a class="reference internal" href="select.html"><
|
1625
|
-
<p>See also <a class="reference internal" href="#logical-select-drilldown-calc-types"><span>drilldown_calc_types</span></a> for an example.</p>
|
1618
|
+
<span id="logical-select-drilldown-calc-target"></span><h4>7.3.34.5.6.7. <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code><a class="headerlink" href="#drilldown-calc-target" title="Permalink to this headline">¶</a></h4>
|
1619
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-calc-target"><span class="std std-ref">drilldown_calc_target</span></a> in
|
1620
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. See <a class="reference internal" href="select.html#select-drilldown-calc-target"><span class="std std-ref">drilldown_calc_target</span></a> for details.</p>
|
1621
|
+
<p>See also <a class="reference internal" href="#logical-select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a> for an example.</p>
|
1626
1622
|
</div>
|
1627
1623
|
</div>
|
1628
1624
|
<div class="section" id="advanced-drilldown-related-parameters">
|
1629
|
-
<span id="logical-select-advanced-drilldown-related-parameters"></span><h3>7.3.
|
1630
|
-
<p>All advanced drilldown related parameters in <a class="reference internal" href="select.html"><
|
1631
|
-
supported. See <a class="reference internal" href="select.html#select-advanced-drilldown-related-parameters"><span>Advanced drilldown related parameters</span></a> for
|
1625
|
+
<span id="logical-select-advanced-drilldown-related-parameters"></span><h3>7.3.34.5.7. Advanced drilldown related parameters<a class="headerlink" href="#advanced-drilldown-related-parameters" title="Permalink to this headline">¶</a></h3>
|
1626
|
+
<p>All advanced drilldown related parameters in <a class="reference internal" href="select.html"><span class="doc">select</span></a> are
|
1627
|
+
supported. See <a class="reference internal" href="select.html#select-advanced-drilldown-related-parameters"><span class="std std-ref">Advanced drilldown related parameters</span></a> for
|
1632
1628
|
details.</p>
|
1633
1629
|
<p>There are some limitations:</p>
|
1634
1630
|
<blockquote>
|
@@ -1639,9 +1635,9 @@ work with multiple shards. It works with one shard. <code class="docutils litera
|
|
1639
1635
|
</ul>
|
1640
1636
|
</div></blockquote>
|
1641
1637
|
<div class="section" id="drilldown-label-keys">
|
1642
|
-
<span id="logical-select-drilldown-label-keys"></span><h4>7.3.
|
1643
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a> in
|
1644
|
-
<a class="reference internal" href="select.html"><
|
1638
|
+
<span id="logical-select-drilldown-label-keys"></span><h4>7.3.34.5.7.1. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code><a class="headerlink" href="#drilldown-label-keys" title="Permalink to this headline">¶</a></h4>
|
1639
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a> in
|
1640
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. See <a class="reference internal" href="select.html#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a> for details.</p>
|
1645
1641
|
<p>Here is an example:</p>
|
1646
1642
|
<p>Execution example:</p>
|
1647
1643
|
<div class="highlight-none"><div class="highlight"><pre><span></span>logical_select \
|
@@ -1716,9 +1712,9 @@ work with multiple shards. It works with one shard. <code class="docutils litera
|
|
1716
1712
|
</div>
|
1717
1713
|
</div>
|
1718
1714
|
<div class="section" id="drilldown-label-output-columns">
|
1719
|
-
<span id="logical-select-drilldown-label-output-columns"></span><h4>7.3.
|
1720
|
-
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-label-output-columns"><span>drilldown[${LABEL}].output_columns</span></a> in
|
1721
|
-
<a class="reference internal" href="select.html"><
|
1715
|
+
<span id="logical-select-drilldown-label-output-columns"></span><h4>7.3.34.5.7.2. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code><a class="headerlink" href="#drilldown-label-output-columns" title="Permalink to this headline">¶</a></h4>
|
1716
|
+
<p>Corresponds to <a class="reference internal" href="select.html#select-drilldown-label-output-columns"><span class="std std-ref">drilldown[${LABEL}].output_columns</span></a> in
|
1717
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. See <a class="reference internal" href="select.html#select-drilldown-label-output-columns"><span class="std std-ref">drilldown[${LABEL}].output_columns</span></a> for
|
1722
1718
|
details.</p>
|
1723
1719
|
<p>Here is an example:</p>
|
1724
1720
|
<p>Execution example:</p>
|
@@ -1782,8 +1778,8 @@ details.</p>
|
|
1782
1778
|
</div>
|
1783
1779
|
</div>
|
1784
1780
|
<div class="section" id="drilldown-label-sortby">
|
1785
|
-
<span id="logical-select-drilldown-label-sortby"></span><h4>7.3.
|
1786
|
-
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-sortby"><span>drilldown_sortby</span></a> in not labeled
|
1781
|
+
<span id="logical-select-drilldown-label-sortby"></span><h4>7.3.34.5.7.3. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code><a class="headerlink" href="#drilldown-label-sortby" title="Permalink to this headline">¶</a></h4>
|
1782
|
+
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-sortby"><span class="std std-ref">drilldown_sortby</span></a> in not labeled
|
1787
1783
|
drilldown.</p>
|
1788
1784
|
<p><code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code> has a limitation.</p>
|
1789
1785
|
<p><code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> in <code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code> doesn't work
|
@@ -1864,8 +1860,8 @@ shard:</p>
|
|
1864
1860
|
</div>
|
1865
1861
|
</div>
|
1866
1862
|
<div class="section" id="drilldown-label-offset">
|
1867
|
-
<span id="logical-select-drilldown-label-offset"></span><h4>7.3.
|
1868
|
-
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-offset"><span>drilldown_offset</span></a> in not labeled
|
1863
|
+
<span id="logical-select-drilldown-label-offset"></span><h4>7.3.34.5.7.4. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></code><a class="headerlink" href="#drilldown-label-offset" title="Permalink to this headline">¶</a></h4>
|
1864
|
+
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-offset"><span class="std std-ref">drilldown_offset</span></a> in not labeled
|
1869
1865
|
drilldown.</p>
|
1870
1866
|
<p>Here is an example:</p>
|
1871
1867
|
<p>Execution example:</p>
|
@@ -1925,8 +1921,8 @@ drilldown.</p>
|
|
1925
1921
|
</div>
|
1926
1922
|
</div>
|
1927
1923
|
<div class="section" id="drilldown-label-limit">
|
1928
|
-
<span id="logical-select-drilldown-label-limit"></span><h4>7.3.
|
1929
|
-
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-limit"><span>drilldown_limit</span></a> in not labeled
|
1924
|
+
<span id="logical-select-drilldown-label-limit"></span><h4>7.3.34.5.7.5. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></code><a class="headerlink" href="#drilldown-label-limit" title="Permalink to this headline">¶</a></h4>
|
1925
|
+
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-limit"><span class="std std-ref">drilldown_limit</span></a> in not labeled
|
1930
1926
|
drilldown.</p>
|
1931
1927
|
<p>Here is an example:</p>
|
1932
1928
|
<p>Execution example:</p>
|
@@ -1986,8 +1982,8 @@ drilldown.</p>
|
|
1986
1982
|
</div>
|
1987
1983
|
</div>
|
1988
1984
|
<div class="section" id="drilldown-label-calc-types">
|
1989
|
-
<span id="logical-select-drilldown-label-calc-types"></span><h4>7.3.
|
1990
|
-
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-calc-types"><span>drilldown_calc_types</span></a> in not
|
1985
|
+
<span id="logical-select-drilldown-label-calc-types"></span><h4>7.3.34.5.7.6. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></code><a class="headerlink" href="#drilldown-label-calc-types" title="Permalink to this headline">¶</a></h4>
|
1986
|
+
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a> in not
|
1991
1987
|
labeled drilldown.</p>
|
1992
1988
|
<p>Here is an example:</p>
|
1993
1989
|
<p>Execution example:</p>
|
@@ -2081,18 +2077,18 @@ labeled drilldown.</p>
|
|
2081
2077
|
</div>
|
2082
2078
|
</div>
|
2083
2079
|
<div class="section" id="drilldown-label-calc-target">
|
2084
|
-
<span id="logical-select-drilldown-label-calc-target"></span><h4>7.3.
|
2085
|
-
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-calc-target"><span>drilldown_calc_target</span></a> in not
|
2080
|
+
<span id="logical-select-drilldown-label-calc-target"></span><h4>7.3.34.5.7.7. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></code><a class="headerlink" href="#drilldown-label-calc-target" title="Permalink to this headline">¶</a></h4>
|
2081
|
+
<p>Corresponds to <a class="reference internal" href="#logical-select-drilldown-calc-target"><span class="std std-ref">drilldown_calc_target</span></a> in not
|
2086
2082
|
labeled drilldown.</p>
|
2087
|
-
<p>See also <a class="reference internal" href="#logical-select-drilldown-label-calc-types"><span>drilldown[${LABEL}].calc_types</span></a>
|
2083
|
+
<p>See also <a class="reference internal" href="#logical-select-drilldown-label-calc-types"><span class="std std-ref">drilldown[${LABEL}].calc_types</span></a>
|
2088
2084
|
for an example.</p>
|
2089
2085
|
</div>
|
2090
2086
|
</div>
|
2091
2087
|
</div>
|
2092
2088
|
<div class="section" id="return-value">
|
2093
|
-
<h2>7.3.
|
2089
|
+
<h2>7.3.34.6. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2>
|
2094
2090
|
<p>The return value format of <code class="docutils literal"><span class="pre">logical_select</span></code> is compatible with
|
2095
|
-
<a class="reference internal" href="select.html"><
|
2091
|
+
<a class="reference internal" href="select.html"><span class="doc">select</span></a>. See <a class="reference internal" href="select.html#select-return-value"><span class="std std-ref">Return value</span></a> for details.</p>
|
2096
2092
|
</div>
|
2097
2093
|
</div>
|
2098
2094
|
|
@@ -2104,80 +2100,80 @@ for an example.</p>
|
|
2104
2100
|
<div class="sphinxsidebarwrapper">
|
2105
2101
|
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
2106
2102
|
<ul>
|
2107
|
-
<li><a class="reference internal" href="#">7.3.
|
2108
|
-
<li><a class="reference internal" href="#summary">7.3.
|
2109
|
-
<li><a class="reference internal" href="#syntax">7.3.
|
2110
|
-
<li><a class="reference internal" href="#differences-from-select">7.3.
|
2111
|
-
<li><a class="reference internal" href="#usage">7.3.
|
2112
|
-
<li><a class="reference internal" href="#simple-usage">7.3.
|
2103
|
+
<li><a class="reference internal" href="#">7.3.34. <code class="docutils literal"><span class="pre">logical_select</span></code></a><ul>
|
2104
|
+
<li><a class="reference internal" href="#summary">7.3.34.1. Summary</a></li>
|
2105
|
+
<li><a class="reference internal" href="#syntax">7.3.34.2. Syntax</a></li>
|
2106
|
+
<li><a class="reference internal" href="#differences-from-select">7.3.34.3. Differences from <code class="docutils literal"><span class="pre">select</span></code></a></li>
|
2107
|
+
<li><a class="reference internal" href="#usage">7.3.34.4. Usage</a><ul>
|
2108
|
+
<li><a class="reference internal" href="#simple-usage">7.3.34.4.1. Simple usage</a></li>
|
2113
2109
|
</ul>
|
2114
2110
|
</li>
|
2115
|
-
<li><a class="reference internal" href="#parameters">7.3.
|
2116
|
-
<li><a class="reference internal" href="#required-
|
2117
|
-
<li><a class="reference internal" href="#logical-table">7.3.
|
2118
|
-
<li><a class="reference internal" href="#shard-key">7.3.
|
2111
|
+
<li><a class="reference internal" href="#parameters">7.3.34.5. Parameters</a><ul>
|
2112
|
+
<li><a class="reference internal" href="#required-parameters">7.3.34.5.1. Required parameters</a><ul>
|
2113
|
+
<li><a class="reference internal" href="#logical-table">7.3.34.5.1.1. <code class="docutils literal"><span class="pre">logical_table</span></code></a></li>
|
2114
|
+
<li><a class="reference internal" href="#shard-key">7.3.34.5.1.2. <code class="docutils literal"><span class="pre">shard_key</span></code></a></li>
|
2119
2115
|
</ul>
|
2120
2116
|
</li>
|
2121
|
-
<li><a class="reference internal" href="#optional-parameters">7.3.
|
2122
|
-
<li><a class="reference internal" href="#min">7.3.
|
2123
|
-
<li><a class="reference internal" href="#min-border">7.3.
|
2124
|
-
<li><a class="reference internal" href="#max">7.3.
|
2125
|
-
<li><a class="reference internal" href="#max-border">7.3.
|
2117
|
+
<li><a class="reference internal" href="#optional-parameters">7.3.34.5.2. Optional parameters</a><ul>
|
2118
|
+
<li><a class="reference internal" href="#min">7.3.34.5.2.1. <code class="docutils literal"><span class="pre">min</span></code></a></li>
|
2119
|
+
<li><a class="reference internal" href="#min-border">7.3.34.5.2.2. <code class="docutils literal"><span class="pre">min_border</span></code></a></li>
|
2120
|
+
<li><a class="reference internal" href="#max">7.3.34.5.2.3. <code class="docutils literal"><span class="pre">max</span></code></a></li>
|
2121
|
+
<li><a class="reference internal" href="#max-border">7.3.34.5.2.4. <code class="docutils literal"><span class="pre">max_border</span></code></a></li>
|
2126
2122
|
</ul>
|
2127
2123
|
</li>
|
2128
|
-
<li><a class="reference internal" href="#search-related-parameters">7.3.
|
2129
|
-
<li><a class="reference internal" href="#match-columns">7.3.
|
2130
|
-
<li><a class="reference internal" href="#query">7.3.
|
2131
|
-
<li><a class="reference internal" href="#filter">7.3.
|
2124
|
+
<li><a class="reference internal" href="#search-related-parameters">7.3.34.5.3. Search related parameters</a><ul>
|
2125
|
+
<li><a class="reference internal" href="#match-columns">7.3.34.5.3.1. <code class="docutils literal"><span class="pre">match_columns</span></code></a></li>
|
2126
|
+
<li><a class="reference internal" href="#query">7.3.34.5.3.2. <code class="docutils literal"><span class="pre">query</span></code></a></li>
|
2127
|
+
<li><a class="reference internal" href="#filter">7.3.34.5.3.3. <code class="docutils literal"><span class="pre">filter</span></code></a></li>
|
2132
2128
|
</ul>
|
2133
2129
|
</li>
|
2134
|
-
<li><a class="reference internal" href="#advanced-search-parameters">7.3.
|
2135
|
-
<li><a class="reference internal" href="#match-escalation-threshold">7.3.
|
2136
|
-
<li><a class="reference internal" href="#query-flags">7.3.
|
2137
|
-
<li><a class="reference internal" href="#query-expander">7.3.
|
2130
|
+
<li><a class="reference internal" href="#advanced-search-parameters">7.3.34.5.4. Advanced search parameters</a><ul>
|
2131
|
+
<li><a class="reference internal" href="#match-escalation-threshold">7.3.34.5.4.1. <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code></a></li>
|
2132
|
+
<li><a class="reference internal" href="#query-flags">7.3.34.5.4.2. <code class="docutils literal"><span class="pre">query_flags</span></code></a></li>
|
2133
|
+
<li><a class="reference internal" href="#query-expander">7.3.34.5.4.3. <code class="docutils literal"><span class="pre">query_expander</span></code></a></li>
|
2138
2134
|
</ul>
|
2139
2135
|
</li>
|
2140
|
-
<li><a class="reference internal" href="#output-related-parameters">7.3.
|
2141
|
-
<li><a class="reference internal" href="#output-columns">7.3.
|
2142
|
-
<li><a class="reference internal" href="#sortby">7.3.
|
2143
|
-
<li><a class="reference internal" href="#offset">7.3.
|
2144
|
-
<li><a class="reference internal" href="#limit">7.3.
|
2145
|
-
<li><a class="reference internal" href="#scorer">7.3.
|
2136
|
+
<li><a class="reference internal" href="#output-related-parameters">7.3.34.5.5. Output related parameters</a><ul>
|
2137
|
+
<li><a class="reference internal" href="#output-columns">7.3.34.5.5.1. <code class="docutils literal"><span class="pre">output_columns</span></code></a></li>
|
2138
|
+
<li><a class="reference internal" href="#sortby">7.3.34.5.5.2. <code class="docutils literal"><span class="pre">sortby</span></code></a></li>
|
2139
|
+
<li><a class="reference internal" href="#offset">7.3.34.5.5.3. <code class="docutils literal"><span class="pre">offset</span></code></a></li>
|
2140
|
+
<li><a class="reference internal" href="#limit">7.3.34.5.5.4. <code class="docutils literal"><span class="pre">limit</span></code></a></li>
|
2141
|
+
<li><a class="reference internal" href="#scorer">7.3.34.5.5.5. <code class="docutils literal"><span class="pre">scorer</span></code></a></li>
|
2146
2142
|
</ul>
|
2147
2143
|
</li>
|
2148
|
-
<li><a class="reference internal" href="#drilldown-related-parameters">7.3.
|
2149
|
-
<li><a class="reference internal" href="#drilldown">7.3.
|
2150
|
-
<li><a class="reference internal" href="#drilldown-sortby">7.3.
|
2151
|
-
<li><a class="reference internal" href="#drilldown-output-columns">7.3.
|
2152
|
-
<li><a class="reference internal" href="#drilldown-offset">7.3.
|
2153
|
-
<li><a class="reference internal" href="#drilldown-limit">7.3.
|
2154
|
-
<li><a class="reference internal" href="#drilldown-calc-types">7.3.
|
2155
|
-
<li><a class="reference internal" href="#drilldown-calc-target">7.3.
|
2144
|
+
<li><a class="reference internal" href="#drilldown-related-parameters">7.3.34.5.6. Drilldown related parameters</a><ul>
|
2145
|
+
<li><a class="reference internal" href="#drilldown">7.3.34.5.6.1. <code class="docutils literal"><span class="pre">drilldown</span></code></a></li>
|
2146
|
+
<li><a class="reference internal" href="#drilldown-sortby">7.3.34.5.6.2. <code class="docutils literal"><span class="pre">drilldown_sortby</span></code></a></li>
|
2147
|
+
<li><a class="reference internal" href="#drilldown-output-columns">7.3.34.5.6.3. <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code></a></li>
|
2148
|
+
<li><a class="reference internal" href="#drilldown-offset">7.3.34.5.6.4. <code class="docutils literal"><span class="pre">drilldown_offset</span></code></a></li>
|
2149
|
+
<li><a class="reference internal" href="#drilldown-limit">7.3.34.5.6.5. <code class="docutils literal"><span class="pre">drilldown_limit</span></code></a></li>
|
2150
|
+
<li><a class="reference internal" href="#drilldown-calc-types">7.3.34.5.6.6. <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code></a></li>
|
2151
|
+
<li><a class="reference internal" href="#drilldown-calc-target">7.3.34.5.6.7. <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code></a></li>
|
2156
2152
|
</ul>
|
2157
2153
|
</li>
|
2158
|
-
<li><a class="reference internal" href="#advanced-drilldown-related-parameters">7.3.
|
2159
|
-
<li><a class="reference internal" href="#drilldown-label-keys">7.3.
|
2160
|
-
<li><a class="reference internal" href="#drilldown-label-output-columns">7.3.
|
2161
|
-
<li><a class="reference internal" href="#drilldown-label-sortby">7.3.
|
2162
|
-
<li><a class="reference internal" href="#drilldown-label-offset">7.3.
|
2163
|
-
<li><a class="reference internal" href="#drilldown-label-limit">7.3.
|
2164
|
-
<li><a class="reference internal" href="#drilldown-label-calc-types">7.3.
|
2165
|
-
<li><a class="reference internal" href="#drilldown-label-calc-target">7.3.
|
2154
|
+
<li><a class="reference internal" href="#advanced-drilldown-related-parameters">7.3.34.5.7. Advanced drilldown related parameters</a><ul>
|
2155
|
+
<li><a class="reference internal" href="#drilldown-label-keys">7.3.34.5.7.1. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code></a></li>
|
2156
|
+
<li><a class="reference internal" href="#drilldown-label-output-columns">7.3.34.5.7.2. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code></a></li>
|
2157
|
+
<li><a class="reference internal" href="#drilldown-label-sortby">7.3.34.5.7.3. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code></a></li>
|
2158
|
+
<li><a class="reference internal" href="#drilldown-label-offset">7.3.34.5.7.4. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></code></a></li>
|
2159
|
+
<li><a class="reference internal" href="#drilldown-label-limit">7.3.34.5.7.5. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></code></a></li>
|
2160
|
+
<li><a class="reference internal" href="#drilldown-label-calc-types">7.3.34.5.7.6. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></code></a></li>
|
2161
|
+
<li><a class="reference internal" href="#drilldown-label-calc-target">7.3.34.5.7.7. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></code></a></li>
|
2166
2162
|
</ul>
|
2167
2163
|
</li>
|
2168
2164
|
</ul>
|
2169
2165
|
</li>
|
2170
|
-
<li><a class="reference internal" href="#return-value">7.3.
|
2166
|
+
<li><a class="reference internal" href="#return-value">7.3.34.6. Return value</a></li>
|
2171
2167
|
</ul>
|
2172
2168
|
</li>
|
2173
2169
|
</ul>
|
2174
2170
|
|
2175
2171
|
<h4>Previous topic</h4>
|
2176
2172
|
<p class="topless"><a href="logical_range_filter.html"
|
2177
|
-
title="previous chapter">7.3.
|
2173
|
+
title="previous chapter">7.3.33. <code class="docutils literal"><span class="pre">logical_range_filter</span></code></a></p>
|
2178
2174
|
<h4>Next topic</h4>
|
2179
2175
|
<p class="topless"><a href="logical_shard_list.html"
|
2180
|
-
title="next chapter">7.3.
|
2176
|
+
title="next chapter">7.3.35. <code class="docutils literal"><span class="pre">logical_shard_list</span></code></a></p>
|
2181
2177
|
<div role="note" aria-label="source link">
|
2182
2178
|
<h3>This Page</h3>
|
2183
2179
|
<ul class="this-page-menu">
|
@@ -2193,9 +2189,6 @@ for an example.</p>
|
|
2193
2189
|
<input type="hidden" name="check_keywords" value="yes" />
|
2194
2190
|
<input type="hidden" name="area" value="default" />
|
2195
2191
|
</form>
|
2196
|
-
<p class="searchtip" style="font-size: 90%">
|
2197
|
-
Enter search terms or a module, class or function name.
|
2198
|
-
</p>
|
2199
2192
|
</div>
|
2200
2193
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
2201
2194
|
</div>
|
@@ -2209,12 +2202,12 @@ for an example.</p>
|
|
2209
2202
|
<a href="../../genindex.html" title="General Index"
|
2210
2203
|
>index</a></li>
|
2211
2204
|
<li class="right" >
|
2212
|
-
<a href="logical_shard_list.html" title="7.3.
|
2205
|
+
<a href="logical_shard_list.html" title="7.3.35. logical_shard_list"
|
2213
2206
|
>next</a> |</li>
|
2214
2207
|
<li class="right" >
|
2215
|
-
<a href="logical_range_filter.html" title="7.3.
|
2208
|
+
<a href="logical_range_filter.html" title="7.3.33. logical_range_filter"
|
2216
2209
|
>previous</a> |</li>
|
2217
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
2210
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2 documentation</a> »</li>
|
2218
2211
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
2219
2212
|
<li class="nav-item nav-item-2"><a href="../command.html" >7.3. Command</a> »</li>
|
2220
2213
|
</ul>
|