Add handling for GatherPath to print_path.

Peter Geoghegan
This commit is contained in:
Robert Haas 2015-12-02 08:19:50 -05:00
parent 7fb008c5ee
commit c7485a82c3

View File

@ -2771,6 +2771,10 @@ print_path(PlannerInfo *root, Path *path, int indent)
ptype = "Unique";
subpath = ((UniquePath *) path)->subpath;
break;
case T_GatherPath:
ptype = "Gather";
subpath = ((GatherPath *) path)->subpath;
break;
case T_NestPath:
ptype = "NestLoop";
join = true;