diff options
author | Robert Haas | 2015-12-02 13:19:50 +0000 |
---|---|---|
committer | Robert Haas | 2015-12-02 13:19:50 +0000 |
commit | c7485a82c3e29103757db75bb9ff8dac597387dc (patch) | |
tree | 99f403dd123a1de2c33f3e403f8d403483789f8b | |
parent | 7fb008c5ee59b04005a8ee6c1006249f729e2b03 (diff) |
Add handling for GatherPath to print_path.
Peter Geoghegan
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; |