From 67f832957b06429259aeed2054f4e824db42db26 Mon Sep 17 00:00:00 2001 From: Clint Wylie Date: Mon, 31 Dec 2018 11:30:33 -0800 Subject: [PATCH] add bloom filter operator to general sql docs (#6785) --- docs/content/querying/sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/querying/sql.md b/docs/content/querying/sql.md index a02f3e39832..76080fbb0c2 100644 --- a/docs/content/querying/sql.md +++ b/docs/content/querying/sql.md @@ -235,7 +235,7 @@ over the connection time zone. |`CASE WHEN boolean_expr1 THEN result1 \[ WHEN boolean_expr2 THEN result2 ... \] \[ ELSE resultN \] END`|Searched CASE.| |`NULLIF(value1, value2)`|Returns NULL if value1 and value2 match, else returns value1.| |`COALESCE(value1, value2, ...)`|Returns the first value that is neither NULL nor empty string.| - +|`BLOOM_FILTER_TEST(, )`|Returns true if the value is contained in the base64 serialized bloom filter. See [bloom filter extension](../development/extensions-core/bloom-filter.html) documentation for additional details. ### Unsupported features Druid does not support all SQL features, including: