Oversight in commit
9303d62c6.
Author: Aleksander Alekseev <aleksander@tigerdata.com>
Discussion: https://postgr.es/m/CAJ7c6TOsKmmgyA6EwxKVsNeHFHrWXYdgZivgjo_ujf890BpeeA@mail.gmail.com
typedef struct
{
- bool abbreviate; /* Should we abbreviate keys? */
hyperLogLogState abbr_card; /* Abbreviated key cardinality state */
hyperLogLogState full_card; /* Full key cardinality state */
double prop_card; /* Required cardinality proportion */
ByteaSortSupport *bss;
bss = palloc_object(ByteaSortSupport);
- bss->abbreviate = true;
bss->prop_card = 0.20;
initHyperLogLog(&bss->abbr_card, 10);
initHyperLogLog(&bss->full_card, 10);