File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -1859,6 +1859,16 @@ _outTidPath(StringInfo str, const TidPath *node)
1859
1859
WRITE_NODE_FIELD (tidquals );
1860
1860
}
1861
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
+
1862
1872
static void
1863
1873
_outSubqueryScanPath (StringInfo str , const SubqueryScanPath * node )
1864
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
break ;
You can’t perform that action at this time.
0 commit comments