>Hm. Just guessing from the location of the crash, but I'll bet I
> overlooked the case of an expanded array with no nulls, ie should be
> - bool isnull2 = nulls2[j];
> + bool isnull2 = nulls2 ? nulls2[j] : false;
> I'll commit that in a few minutes, please confirm whether it fixes this
> for you.
> regards, tom lane
Tom,
That seems to have fixed the issue.
Thanks,
Regina