-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Batch19 SQL aggregation functions #17658
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: Victoria Lim <vtlim@users.noreply.github.com>
|
||
</details> | ||
|
||
[Learn more](sql-aggregations.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to fix this link to scalar other
`numEntries` specifies the maximum number of distinct values before the false positive rate increases. | ||
|
||
* **Syntax:** `BLOOM_FILTER(expr, numEntries)` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`numEntries` specifies the maximum number of distinct values before the false positive rate increases. | |
* **Syntax:** `BLOOM_FILTER(expr, numEntries)` | |
* **Syntax:** `BLOOM_FILTER(expr, numEntries)` | |
`numEntries` specifies the maximum number of distinct values before the false positive rate increases. |
@@ -1282,21 +1282,74 @@ Returns the following: | |||
|
|||
## BLOOM_FILTER | |||
|
|||
Computes a Bloom filter from values produced by the specified expression. | |||
Computes a [bloom filter](../development/extensions-core/bloom-filter.md) from values provided in an expression. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like Bloom is a name so all instances of this should be capitalized
- `druid-tdigestsketch`: `tDigestSketch` | ||
|
||
* **Syntax:** `DECODE_BASE64_COMPLEX(dataType, expr)` | ||
* **Function type:** Scalar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* **Function type:** Scalar | |
* **Function type:** Scalar, other |
Add examples to the sql-functions.md page.
Updates the following SQL aggregation functions:
BLOOM_FILTER
BLOOM_FILTER_TEST
DECODE_BASE64_COMPLEX
DECODE_BASE64_UTF8
This PR has: