mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Add handling for GatherPath to print_path.
Peter Geoghegan
This commit is contained in:
parent
7fb008c5ee
commit
c7485a82c3
@ -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 New Issue
Block a user