mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Add handling for GatherPath to print_path.
Peter Geoghegan
This commit is contained in:
@ -2771,6 +2771,10 @@ print_path(PlannerInfo *root, Path *path, int indent)
|
|||||||
ptype = "Unique";
|
ptype = "Unique";
|
||||||
subpath = ((UniquePath *) path)->subpath;
|
subpath = ((UniquePath *) path)->subpath;
|
||||||
break;
|
break;
|
||||||
|
case T_GatherPath:
|
||||||
|
ptype = "Gather";
|
||||||
|
subpath = ((GatherPath *) path)->subpath;
|
||||||
|
break;
|
||||||
case T_NestPath:
|
case T_NestPath:
|
||||||
ptype = "NestLoop";
|
ptype = "NestLoop";
|
||||||
join = true;
|
join = true;
|
||||||
|
Reference in New Issue
Block a user