My query looks like:
SELECT
HLL_COUNT.MERGE((SELECT HLL_COUNT.INIT(key.item) FROM UNNEST(data.list) key)),
FROM dataset
let's say I run this query 10000 times (on the same set of data), will I get 10000 identical results or a small percentage of times I might get slightly different outputs?
In the documentation I have not found explanations about this topic and I would like to understand this without having to run thousands times my query ;)