This is an automated email from the ASF dual-hosted git repository.
fjy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-druid.git
The following commit(s) were added to refs/heads/master by this push:
new cc44a4a Correct Documentation for lowerStrict/upperStrict (#6707)
cc44a4a is described below
commit cc44a4a28f57a89f28b8079f2e60902c2fa0708c
Author: Vincent Newkirk <[email protected]>
AuthorDate: Fri Dec 7 03:14:50 2018 +0900
Correct Documentation for lowerStrict/upperStrict (#6707)
The documentation for Bound filter's lowerStrict/upperStrict is incorrect.
It is not consistent with the examples provided and actual behaviour of the
bound filter. Correct this.
---
docs/content/querying/filters.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content/querying/filters.md b/docs/content/querying/filters.md
index 2b906cf..73bebbb 100644
--- a/docs/content/querying/filters.md
+++ b/docs/content/querying/filters.md
@@ -271,8 +271,8 @@ greater than, less than, greater than or equal to, less
than or equal to, and "b
|dimension|String|The dimension to filter on|yes|
|lower|String|The lower bound for the filter|no|
|upper|String|The upper bound for the filter|no|
-|lowerStrict|Boolean|Perform strict comparison on the lower bound ("<" instead
of "<=")|no, default: false|
-|upperStrict|Boolean|Perform strict comparison on the upper bound (">" instead
of ">=")|no, default: false|
+|lowerStrict|Boolean|Perform strict comparison on the lower bound (">" instead
of ">=")|no, default: false|
+|upperStrict|Boolean|Perform strict comparison on the upper bound ("<" instead
of "<=")|no, default: false|
|ordering|String|Specifies the sorting order to use when comparing values
against the bound. Can be one of the following values: "lexicographic",
"alphanumeric", "numeric", "strlen". See [Sorting
Orders](./sorting-orders.html) for more details.|no, default: "lexicographic"|
|extractionFn|[Extraction function](#filtering-with-extraction-functions)|
Extraction function to apply to the dimension|no|
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]