Skip to main content
Skip to main content

bitmap_hash64

bitmap_hash64

description

Syntax

BITMAP BITMAP_HASH64(expr)

Compute the 64-bits hash value of a expr of any type, then return a bitmap containing that hash value. Mainly be used to load non-integer value into bitmap column, e.g.,

cat data | curl --location-trusted -u user:passwd -T - -H "columns: dt,page,device_id, device_id=bitmap_hash64(device_id)"   http://host:8410/api/test/testDb/_stream_load

example

mysql> select bitmap_count(bitmap_hash64('hello'));
+------------------------------------+
| bitmap_count(bitmap_hash64('hello')) |
+------------------------------------+
| 1 |
+------------------------------------+

keywords

BITMAP_HASH,BITMAP