You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by jo...@apache.org on 2018/08/23 21:07:14 UTC

[incubator-druid] branch master updated: Fix bound query keys for Filtering on numeric values (#5881)

This is an automated email from the ASF dual-hosted git repository.

jonwei 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 6e73ad6  Fix bound query keys for Filtering on numeric values (#5881)
6e73ad6 is described below

commit 6e73ad6231134903ddc45edc680231bc3ddb797e
Author: Susie <su...@gmail.com>
AuthorDate: Thu Aug 23 14:07:10 2018 -0700

    Fix bound query keys for Filtering on numeric values (#5881)
    
    It is currently showing the use of `lowerBound` and `upperBound` instead of `lower` and `upper` for the range.
---
 docs/content/querying/filters.md | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/docs/content/querying/filters.md b/docs/content/querying/filters.md
index daa62f3..f0d75fa 100644
--- a/docs/content/querying/filters.md
+++ b/docs/content/querying/filters.md
@@ -434,9 +434,9 @@ Filtering on a range of values, `10 <= myFloatColumn < 20`:
   "type": "bound",
   "dimension": "myFloatColumn",
   "ordering": "numeric",
-  "lowerBound": "10",
+  "lower": "10",
   "lowerStrict": false,
-  "upperBound": "20",
+  "upper": "20",
   "upperStrict": true
 }
 ```
@@ -492,5 +492,6 @@ Filtering on a set of ISO 8601 intervals:
 The true filter is a filter which matches all values.  It can be used to temporarily disable other filters without removing the filter. 
 
 ```json
+
 { "type" : "true" }
-```
\ No newline at end of file
+```


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org