postgresql-hll icon indicating copy to clipboard operation
postgresql-hll copied to clipboard

hll_add multiple values

Open materkov opened this issue 9 years ago • 0 comments

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)?

materkov avatar Feb 25 '16 07:02 materkov