diff options
| author | Tom Lane | 1999-03-03 00:02:42 +0000 |
|---|---|---|
| committer | Tom Lane | 1999-03-03 00:02:42 +0000 |
| commit | e0345e09bf420833ce0647c616414a2913148f1e (patch) | |
| tree | 7b94d17e81719dfe431dfc9ce099bfa1d58b0549 /src/include/optimizer | |
| parent | b204d10c79b5177026565a0db531a86f585f09f4 (diff) | |
Partial fix for copied-plan bugs reported by Hiroshi Inoue:
_copyResult didn't copy subPlan structure completely. _copyAgg is still
busted, apparently because of changes from EXCEPT/INTERSECT patch
(get_agg_tlist_references is no longer sufficient to find all aggregates).
No time to look at that tonight, however.
Diffstat (limited to 'src/include/optimizer')
| -rw-r--r-- | src/include/optimizer/subselect.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/optimizer/subselect.h b/src/include/optimizer/subselect.h index 2394694907f..6180b409ea8 100644 --- a/src/include/optimizer/subselect.h +++ b/src/include/optimizer/subselect.h @@ -16,5 +16,6 @@ extern int PlannerPlanId; /* to assigne unique ID to subquery plans */ extern List *SS_finalize_plan(Plan *plan); extern Node *SS_replace_correlation_vars(Node *expr); extern Node *SS_process_sublinks(Node *expr); +extern List *SS_pull_subplan(Node *expr); #endif /* SUBSELECT_H */ |
