File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1753,6 +1753,18 @@ _outUniquePath(StringInfo str, const UniquePath *node)
17531753 WRITE_NODE_FIELD (uniq_exprs );
17541754}
17551755
1756+ static void
1757+ _outGatherPath (StringInfo str , const GatherPath * node )
1758+ {
1759+ WRITE_NODE_TYPE ("GATHERPATH" );
1760+
1761+ _outPathInfo (str , (const Path * ) node );
1762+
1763+ WRITE_NODE_FIELD (subpath );
1764+ WRITE_INT_FIELD (num_workers );
1765+ WRITE_BOOL_FIELD (single_copy );
1766+ }
1767+
17561768static void
17571769_outNestPath (StringInfo str , const NestPath * node )
17581770{
@@ -3293,6 +3305,9 @@ _outNode(StringInfo str, const void *obj)
32933305 case T_UniquePath :
32943306 _outUniquePath (str , obj );
32953307 break ;
3308+ case T_GatherPath :
3309+ _outGatherPath (str , obj );
3310+ break ;
32963311 case T_NestPath :
32973312 _outNestPath (str , obj );
32983313 break ;
You can’t perform that action at this time.
0 commit comments