You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We hash in a few places (aid, count distinct, bucket seed, ...?). Variable length data can potentially be compressed, and instead of hashing the actual value we hash the compressed bytes.
We need to detoast or at least assert that the values are OK to hash.
PG_DETOAST_DATUM_COPY if you want to make sure the result is always pfreeable.
The text was updated successfully, but these errors were encountered:
We hash in a few places (aid, count distinct, bucket seed, ...?). Variable length data can potentially be compressed, and instead of hashing the actual value we hash the compressed bytes.
We need to detoast or at least assert that the values are OK to hash.
PG_DETOAST_DATUM_COPY
if you want to make sure the result is alwayspfree
able.The text was updated successfully, but these errors were encountered: