postgresql-hll
postgresql-hll copied to clipboard
hll_add multiple values
Hi everyone,
Is it possible to add multiple values to HLL at once? Here is example from README for on element:
UPDATE helloworld SET set = hll_add(set, hll_hash_integer(12345)) WHERE id = 1;
What is the most efficient way to add multiple values (I will be adding about ~50 elements for one operation)?