Add outfuncs.c support for GatherPath.
I dunno how commit 3bd909b220930f21d6e15833a17947be749e7fde missed this, but it evidently did.
This commit is contained in:
parent
7b6fb76349
commit
f764ecd81b
@ -1753,6 +1753,18 @@ _outUniquePath(StringInfo str, const UniquePath *node)
|
|||||||
WRITE_NODE_FIELD(uniq_exprs);
|
WRITE_NODE_FIELD(uniq_exprs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
_outGatherPath(StringInfo str, const GatherPath *node)
|
||||||
|
{
|
||||||
|
WRITE_NODE_TYPE("GATHERPATH");
|
||||||
|
|
||||||
|
_outPathInfo(str, (const Path *) node);
|
||||||
|
|
||||||
|
WRITE_NODE_FIELD(subpath);
|
||||||
|
WRITE_INT_FIELD(num_workers);
|
||||||
|
WRITE_BOOL_FIELD(single_copy);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_outNestPath(StringInfo str, const NestPath *node)
|
_outNestPath(StringInfo str, const NestPath *node)
|
||||||
{
|
{
|
||||||
@ -3293,6 +3305,9 @@ _outNode(StringInfo str, const void *obj)
|
|||||||
case T_UniquePath:
|
case T_UniquePath:
|
||||||
_outUniquePath(str, obj);
|
_outUniquePath(str, obj);
|
||||||
break;
|
break;
|
||||||
|
case T_GatherPath:
|
||||||
|
_outGatherPath(str, obj);
|
||||||
|
break;
|
||||||
case T_NestPath:
|
case T_NestPath:
|
||||||
_outNestPath(str, obj);
|
_outNestPath(str, obj);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user