Skip to content

Commit c7485a8

Browse files
committed
Add handling for GatherPath to print_path.
Peter Geoghegan
1 parent 7fb008c commit c7485a8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/backend/optimizer/path/allpaths.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2771,6 +2771,10 @@ print_path(PlannerInfo *root, Path *path, int indent)
27712771
ptype = "Unique";
27722772
subpath = ((UniquePath *) path)->subpath;
27732773
break;
2774+
case T_GatherPath:
2775+
ptype = "Gather";
2776+
subpath = ((GatherPath *) path)->subpath;
2777+
break;
27742778
case T_NestPath:
27752779
ptype = "NestLoop";
27762780
join = true;

0 commit comments

Comments
 (0)