Re: pgsql: Add copy/equal support for XID lists

2022-07-12 Thread Alvaro Herrera
On 2022-Jul-12, Tom Lane wrote: > What about outfuncs/readfuncs? I see that you fixed _outList, > but not its caller outNode: > > else if (IsA(obj, List) || IsA(obj, IntList) || IsA(obj, OidList)) > _outList(str, obj); > > and the LEFT_PAREN case in nodeRead() doesn't know w

Re: pgsql: Add copy/equal support for XID lists

2022-07-12 Thread Tom Lane
Alvaro Herrera writes: > Add copy/equal support for XID lists What about outfuncs/readfuncs? I see that you fixed _outList, but not its caller outNode: else if (IsA(obj, List) || IsA(obj, IntList) || IsA(obj, OidList)) _outList(str, obj); and the LEFT_PAREN case in node