jon-wei closed pull request #5881: Docs: Fix bound query keys for Filtering on
numeric values
URL: https://github.com/apache/incubator-druid/pull/5881
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/docs/content/querying/filters.md b/docs/content/querying/filters.md
index daa62f370ce..f0d75fa2ae1 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
+```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]