mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Add handling for GatherPath to print_path.
Peter Geoghegan
This commit is contained in:
parent
7fb008c5ee
commit
c7485a82c3
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue