From e0345e09bf420833ce0647c616414a2913148f1e Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 3 Mar 1999 00:02:42 +0000 Subject: 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. --- src/include/optimizer/subselect.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/optimizer') 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 */ -- cgit v1.2.3