false);
}
+ /*
+ * If we are reinitializing after a group boundary, we have to free
+ * any prior transValue to avoid memory leakage. We must check not
+ * only the isnull flag but whether the pointer is NULL; since
+ * pergroupstate is initialized with palloc0, the initial condition
+ * has isnull = 0 and null pointer.
+ */
+ if (!peraggstate->transtypeByVal &&
+ !pergroupstate->transValueIsNull &&
+ DatumGetPointer(pergroupstate->transValue) != NULL)
+ pfree(DatumGetPointer(pergroupstate->transValue));
+
/*
* (Re)set transValue to the initial value.
*
build_hash_table(node);
node->table_filled = false;
}
+ else
+ {
+ /* Reset the per-group state (in particular, mark transvalues null) */
+ MemSet(node->pergroup, 0,
+ sizeof(AggStatePerGroupData) * node->numaggs);
+ }
/*
* if chgParam of subnode is not null then plan will be re-scanned by