diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-12-02 08:19:50 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-12-02 08:19:50 -0500 |
commit | c7485a82c3e29103757db75bb9ff8dac597387dc (patch) | |
tree | 99f403dd123a1de2c33f3e403f8d403483789f8b /src | |
parent | 7fb008c5ee59b04005a8ee6c1006249f729e2b03 (diff) | |
download | postgresql-c7485a82c3e29103757db75bb9ff8dac597387dc.tar.gz postgresql-c7485a82c3e29103757db75bb9ff8dac597387dc.zip |
Add handling for GatherPath to print_path.
Peter Geoghegan
Diffstat (limited to 'src')
-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; |