mirror of
https://github.com/postgres/postgres.git
synced 2026-04-02 07:46:09 -04:00
Fix another oversight in CustomScan patch.
disuse_physical_tlist() must work for all plan types handled by create_scan_plan().
This commit is contained in:
parent
c5111ea9ca
commit
03e574af5f
1 changed files with 1 additions and 0 deletions
|
|
@ -553,6 +553,7 @@ disuse_physical_tlist(PlannerInfo *root, Plan *plan, Path *path)
|
|||
case T_CteScan:
|
||||
case T_WorkTableScan:
|
||||
case T_ForeignScan:
|
||||
case T_CustomScan:
|
||||
plan->targetlist = build_path_tlist(root, path);
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue