Add handling for GatherPath to print_path.

Peter Geoghegan
pull/14/head^2
Robert Haas 10 years ago
parent 7fb008c5ee
commit c7485a82c3
  1. 4
      src/backend/optimizer/path/allpaths.c

@ -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;

Loading…
Cancel
Save