HLL Operators
The HLL type supports the following operators:
| HLL Operators | Description | Return Type | Example | ||||||
|---|---|---|---|---|---|---|---|---|---|
| = | Checks whether the values of hll and hll_hashval are equal. | bool |
| ||||||
| <> or != | Checks whetherthe values of hll and hll_hashval are not equal. | bool |
| ||||||
| || | Represents the functions of hll_add, hll_union, and hll_add_rev. | hll |
| ||||||
| # | Calculates the distinct value of the hll, which is equivalent to the hll_cardinality function. | integer |
|