On Tue, 1 Oct 2019 at 03:55, Smith, Peter <pet...@fast.au.fujitsu.com> wrote:
> Typical Example: > Before: > Datum values[Natts_pg_attribute]; > bool nulls[Natts_pg_attribute]; > ... > memset(values, 0, sizeof(values)); > memset(nulls, false, sizeof(nulls)); > After: > Datum values[Natts_pg_attribute] = {0}; > bool nulls[Natts_pg_attribute] = {0}; > I hope you'll forgive a noob question. Why does the "After" initialization for the boolean array have {0} rather than {false}?