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

Commit3bb309b

Browse files
committed
Add _outTidRangePath()
We have outNode() coverage for all path nodes, but this one wasmissed when it was added.
1 parentd16ebfb commit3bb309b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

‎src/backend/nodes/outfuncs.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1859,6 +1859,16 @@ _outTidPath(StringInfo str, const TidPath *node)
18591859
WRITE_NODE_FIELD(tidquals);
18601860
}
18611861

1862+
staticvoid
1863+
_outTidRangePath(StringInfostr,constTidRangePath*node)
1864+
{
1865+
WRITE_NODE_TYPE("TIDRANGEPATH");
1866+
1867+
_outPathInfo(str, (constPath*)node);
1868+
1869+
WRITE_NODE_FIELD(tidrangequals);
1870+
}
1871+
18621872
staticvoid
18631873
_outSubqueryScanPath(StringInfostr,constSubqueryScanPath*node)
18641874
{
@@ -4166,6 +4176,9 @@ outNode(StringInfo str, const void *obj)
41664176
caseT_TidPath:
41674177
_outTidPath(str,obj);
41684178
break;
4179+
caseT_TidRangePath:
4180+
_outTidRangePath(str,obj);
4181+
break;
41694182
caseT_SubqueryScanPath:
41704183
_outSubqueryScanPath(str,obj);
41714184
break;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp