Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf764ecd

Browse files
committed
Add outfuncs.c support for GatherPath.
I dunno how commit3bd909b missedthis, but it evidently did.
1 parent7b6fb76 commitf764ecd

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

‎src/backend/nodes/outfuncs.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,6 +1753,18 @@ _outUniquePath(StringInfo str, const UniquePath *node)
17531753
WRITE_NODE_FIELD(uniq_exprs);
17541754
}
17551755

1756+
staticvoid
1757+
_outGatherPath(StringInfostr,constGatherPath*node)
1758+
{
1759+
WRITE_NODE_TYPE("GATHERPATH");
1760+
1761+
_outPathInfo(str, (constPath*)node);
1762+
1763+
WRITE_NODE_FIELD(subpath);
1764+
WRITE_INT_FIELD(num_workers);
1765+
WRITE_BOOL_FIELD(single_copy);
1766+
}
1767+
17561768
staticvoid
17571769
_outNestPath(StringInfostr,constNestPath*node)
17581770
{
@@ -3293,6 +3305,9 @@ _outNode(StringInfo str, const void *obj)
32933305
caseT_UniquePath:
32943306
_outUniquePath(str,obj);
32953307
break;
3308+
caseT_GatherPath:
3309+
_outGatherPath(str,obj);
3310+
break;
32963311
caseT_NestPath:
32973312
_outNestPath(str,obj);
32983313
break;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp