We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16ebfb commit 3bb309bCopy full SHA for 3bb309b
src/backend/nodes/outfuncs.c
@@ -1859,6 +1859,16 @@ _outTidPath(StringInfo str, const TidPath *node)
1859
WRITE_NODE_FIELD(tidquals);
1860
}
1861
1862
+static void
1863
+_outTidRangePath(StringInfo str, const TidRangePath *node)
1864
+{
1865
+ WRITE_NODE_TYPE("TIDRANGEPATH");
1866
+
1867
+ _outPathInfo(str, (const Path *) node);
1868
1869
+ WRITE_NODE_FIELD(tidrangequals);
1870
+}
1871
1872
static void
1873
_outSubqueryScanPath(StringInfo str, const SubqueryScanPath *node)
1874
{
@@ -4166,6 +4176,9 @@ outNode(StringInfo str, const void *obj)
4166
4176
case T_TidPath:
4167
4177
_outTidPath(str, obj);
4168
4178
break;
4179
+ case T_TidRangePath:
4180
+ _outTidRangePath(str, obj);
4181
+ break;
4169
4182
case T_SubqueryScanPath:
4170
4183
_outSubqueryScanPath(str, obj);
4171
4184
0 commit comments