From: Robert Haas Date: Wed, 2 Dec 2015 13:19:50 +0000 (-0500) Subject: Add handling for GatherPath to print_path. X-Git-Tag: REL9_6_BETA1~1046 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c7485a82c3e29103757db75bb9ff8dac597387dc;p=thirdparty%2Fpostgresql.git Add handling for GatherPath to print_path. Peter Geoghegan --- diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index 1fdcae50ba6..4516cd35f59 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -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;