Commit c7485a82 authored by Robert Haas's avatar Robert Haas

Add handling for GatherPath to print_path.

Peter Geoghegan
parent 7fb008c5
...@@ -2771,6 +2771,10 @@ print_path(PlannerInfo *root, Path *path, int indent) ...@@ -2771,6 +2771,10 @@ print_path(PlannerInfo *root, Path *path, int indent)
ptype = "Unique"; ptype = "Unique";
subpath = ((UniquePath *) path)->subpath; subpath = ((UniquePath *) path)->subpath;
break; break;
case T_GatherPath:
ptype = "Gather";
subpath = ((GatherPath *) path)->subpath;
break;
case T_NestPath: case T_NestPath:
ptype = "NestLoop"; ptype = "NestLoop";
join = true; join = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment