1996-07-09 06:22:35 +00:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
1999-02-13 23:22:53 +00:00
|
|
|
* planner.c
|
1997-09-07 05:04:48 +00:00
|
|
|
* The query optimizer external interface.
|
1996-07-09 06:22:35 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* IDENTIFICATION
|
1999-08-22 23:56:45 +00:00
|
|
|
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planner.c,v 1.65 1999/08/22 23:56:45 tgl Exp $
|
1996-07-09 06:22:35 +00:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
1996-10-31 10:59:42 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
1996-07-09 06:22:35 +00:00
|
|
|
#include "postgres.h"
|
|
|
|
|
1999-07-16 05:00:38 +00:00
|
|
|
#include "access/genam.h"
|
1996-07-09 06:22:35 +00:00
|
|
|
#include "access/heapam.h"
|
1999-07-16 05:00:38 +00:00
|
|
|
#include "catalog/pg_type.h"
|
|
|
|
#include "executor/executor.h"
|
|
|
|
#include "nodes/makefuncs.h"
|
|
|
|
#include "optimizer/clauses.h"
|
1996-07-09 06:22:35 +00:00
|
|
|
#include "optimizer/internal.h"
|
1999-08-21 03:49:17 +00:00
|
|
|
#include "optimizer/paths.h"
|
1999-07-16 05:00:38 +00:00
|
|
|
#include "optimizer/planmain.h"
|
1996-07-09 06:22:35 +00:00
|
|
|
#include "optimizer/planner.h"
|
|
|
|
#include "optimizer/prep.h"
|
1998-02-13 03:37:04 +00:00
|
|
|
#include "optimizer/subselect.h"
|
1996-07-09 06:22:35 +00:00
|
|
|
#include "optimizer/tlist.h"
|
|
|
|
#include "optimizer/var.h"
|
1999-07-16 05:00:38 +00:00
|
|
|
#include "parser/parse_expr.h"
|
|
|
|
#include "parser/parse_oper.h"
|
1999-02-03 19:31:24 +00:00
|
|
|
#include "utils/builtins.h"
|
1999-07-16 05:00:38 +00:00
|
|
|
#include "utils/lsyscache.h"
|
1999-02-03 19:31:24 +00:00
|
|
|
#include "utils/syscache.h"
|
|
|
|
|
1999-05-03 00:38:44 +00:00
|
|
|
static List *make_subplanTargetList(Query *parse, List *tlist,
|
1999-08-21 03:49:17 +00:00
|
|
|
AttrNumber **groupColIdx);
|
1999-05-03 00:38:44 +00:00
|
|
|
static Plan *make_groupplan(List *group_tlist, bool tuplePerGroup,
|
1999-08-21 03:49:17 +00:00
|
|
|
List *groupClause, AttrNumber *grpColIdx,
|
1999-08-22 23:56:45 +00:00
|
|
|
bool is_presorted, Plan *subplan);
|
1997-09-08 21:56:23 +00:00
|
|
|
static Plan *make_sortplan(List *tlist, List *sortcls, Plan *plannode);
|
1996-07-09 06:22:35 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
*
|
1997-09-07 05:04:48 +00:00
|
|
|
* Query optimizer entry point
|
|
|
|
*
|
1996-07-09 06:22:35 +00:00
|
|
|
*****************************************************************************/
|
1998-02-26 04:46:47 +00:00
|
|
|
Plan *
|
1998-02-13 03:37:04 +00:00
|
|
|
planner(Query *parse)
|
|
|
|
{
|
|
|
|
Plan *result_plan;
|
1998-02-26 04:46:47 +00:00
|
|
|
|
1999-06-21 01:20:57 +00:00
|
|
|
/* Initialize state for subselects */
|
1998-02-13 03:37:04 +00:00
|
|
|
PlannerQueryLevel = 1;
|
|
|
|
PlannerInitPlan = NULL;
|
1999-06-21 01:20:57 +00:00
|
|
|
PlannerParamVar = NULL;
|
1998-02-13 03:37:04 +00:00
|
|
|
PlannerPlanId = 0;
|
1998-02-26 04:46:47 +00:00
|
|
|
|
1998-09-03 02:34:35 +00:00
|
|
|
transformKeySetQuery(parse);
|
1999-08-21 03:49:17 +00:00
|
|
|
|
1998-02-26 04:46:47 +00:00
|
|
|
result_plan = union_planner(parse);
|
|
|
|
|
|
|
|
Assert(PlannerQueryLevel == 1);
|
|
|
|
if (PlannerPlanId > 0)
|
1998-02-13 03:37:04 +00:00
|
|
|
{
|
|
|
|
result_plan->initPlan = PlannerInitPlan;
|
1998-02-26 04:46:47 +00:00
|
|
|
(void) SS_finalize_plan(result_plan);
|
1998-02-13 03:37:04 +00:00
|
|
|
}
|
1998-02-26 04:46:47 +00:00
|
|
|
result_plan->nParamExec = length(PlannerParamVar);
|
|
|
|
|
1999-08-22 20:15:04 +00:00
|
|
|
set_plan_references(result_plan);
|
|
|
|
|
1998-09-01 03:29:17 +00:00
|
|
|
return result_plan;
|
1998-02-13 03:37:04 +00:00
|
|
|
}
|
1996-07-09 06:22:35 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
/*
|
1999-02-13 23:22:53 +00:00
|
|
|
* union_planner
|
1997-09-07 05:04:48 +00:00
|
|
|
*
|
|
|
|
* Invokes the planner on union queries if there are any left,
|
|
|
|
* recursing if necessary to get them all, then processes normal plans.
|
|
|
|
*
|
1996-07-09 06:22:35 +00:00
|
|
|
* Returns a query plan.
|
1997-09-07 05:04:48 +00:00
|
|
|
*
|
1996-07-09 06:22:35 +00:00
|
|
|
*/
|
1998-02-26 04:46:47 +00:00
|
|
|
Plan *
|
1998-02-13 03:37:04 +00:00
|
|
|
union_planner(Query *parse)
|
1996-07-09 06:22:35 +00:00
|
|
|
{
|
1997-09-08 02:41:22 +00:00
|
|
|
List *tlist = parse->targetList;
|
|
|
|
List *rangetable = parse->rtable;
|
|
|
|
Plan *result_plan = (Plan *) NULL;
|
1999-05-03 00:38:44 +00:00
|
|
|
AttrNumber *groupColIdx = NULL;
|
1999-08-22 23:56:45 +00:00
|
|
|
List *current_pathkeys = NIL;
|
Hi!
INTERSECT and EXCEPT is available for postgresql-v6.4!
The patch against v6.4 is included at the end of the current text
(in uuencoded form!)
I also included the text of my Master's Thesis. (a postscript
version). I hope that you find something of it useful and would be
happy if parts of it find their way into the PostgreSQL documentation
project (If so, tell me, then I send the sources of the document!)
The contents of the document are:
-) The first chapter might be of less interest as it gives only an
overview on SQL.
-) The second chapter gives a description on much of PostgreSQL's
features (like user defined types etc. and how to use these features)
-) The third chapter starts with an overview of PostgreSQL's internal
structure with focus on the stages a query has to pass (i.e. parser,
planner/optimizer, executor). Then a detailed description of the
implementation of the Having clause and the Intersect/Except logic is
given.
Originally I worked on v6.3.2 but never found time enough to prepare
and post a patch. Now I applied the changes to v6.4 to get Intersect
and Except working with the new version. Chapter 3 of my documentation
deals with the changes against v6.3.2, so keep that in mind when
comparing the parts of the code printed there with the patched sources
of v6.4.
Here are some remarks on the patch. There are some things that have
still to be done but at the moment I don't have time to do them
myself. (I'm doing my military service at the moment) Sorry for that
:-(
-) I used a rewrite technique for the implementation of the Except/Intersect
logic which rewrites the query to a semantically equivalent query before
it is handed to the rewrite system (for views, rules etc.), planner,
executor etc.
-) In v6.3.2 the types of the attributes of two select statements
connected by the UNION keyword had to match 100%. In v6.4 the types
only need to be familiar (i.e. int and float can be mixed). Since this
feature did not exist when I worked on Intersect/Except it
does not work correctly for Except/Intersect queries WHEN USED IN
COMBINATION WITH UNIONS! (i.e. sometimes the wrong type is used for the
resulting table. This is because until now the types of the attributes of
the first select statement have been used for the resulting table.
When Intersects and/or Excepts are used in combination with Unions it
might happen, that the first select statement of the original query
appears at another position in the query which will be executed. The reason
for this is the technique used for the implementation of
Except/Intersect which does a query rewrite!)
NOTE: It is NOT broken for pure UNION queries and pure INTERSECT/EXCEPT
queries!!!
-) I had to add the field intersect_clause to some data structures
but did not find time to implement printfuncs for the new field.
This does NOT break the debug modes but when an Except/Intersect
is used the query debug output will be the already rewritten query.
-) Massive changes to the grammar rules for SELECT and INSERT statements
have been necessary (see comments in gram.y and documentation for
deatails) in order to be able to use mixed queries like
(SELECT ... UNION (SELECT ... EXCEPT SELECT)) INTERSECT SELECT...;
-) When using UNION/EXCEPT/INTERSECT you will get:
NOTICE: equal: "Don't know if nodes of type xxx are equal".
I did not have time to add comparsion support for all the needed nodes,
but the default behaviour of the function equal met my requirements.
I did not dare to supress this message!
That's the reason why the regression test for union will fail: These
messages are also included in the union.out file!
-) Somebody of you changed the union_planner() function for v6.4
(I copied the targetlist to new_tlist and that was removed and
replaced by a cleanup of the original targetlist). These chnages
violated some having queries executed against views so I changed
it back again. I did not have time to examine the differences between the
two versions but now it works :-)
If you want to find out, try the file queries/view_having.sql on
both versions and compare the results . Two queries won't produce a
correct result with your version.
regards
Stefan
1999-01-18 00:10:17 +00:00
|
|
|
Index rt_index;
|
1997-09-07 05:04:48 +00:00
|
|
|
|
1997-12-24 06:06:58 +00:00
|
|
|
if (parse->unionClause)
|
|
|
|
{
|
1999-05-25 16:15:34 +00:00
|
|
|
result_plan = (Plan *) plan_union_queries(parse);
|
|
|
|
/* XXX do we need to do this? bjm 12/19/97 */
|
|
|
|
tlist = preprocess_targetlist(tlist,
|
|
|
|
parse->commandType,
|
|
|
|
parse->resultRelation,
|
|
|
|
parse->rtable);
|
1999-08-22 23:56:45 +00:00
|
|
|
/*
|
|
|
|
* We leave current_pathkeys NIL indicating we do not know sort order.
|
|
|
|
* Actually, for a normal UNION we have done an explicit sort; ought
|
|
|
|
* to change interface to plan_union_queries to pass that info back!
|
|
|
|
*/
|
1997-12-24 06:06:58 +00:00
|
|
|
}
|
1999-02-03 21:18:02 +00:00
|
|
|
else if ((rt_index = first_inherit_rt_entry(rangetable)) != -1)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
1999-06-06 17:38:11 +00:00
|
|
|
List *sub_tlist;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate appropriate target list for subplan; may be different
|
|
|
|
* from tlist if grouping or aggregation is needed.
|
|
|
|
*/
|
|
|
|
sub_tlist = make_subplanTargetList(parse, tlist, &groupColIdx);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Recursively plan the subqueries needed for inheritance
|
|
|
|
*/
|
|
|
|
result_plan = (Plan *) plan_inherit_queries(parse, sub_tlist,
|
|
|
|
rt_index);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fix up outer target list. NOTE: unlike the case for non-inherited
|
|
|
|
* query, we pass the unfixed tlist to subplans, which do their own
|
|
|
|
* fixing. But we still want to fix the outer target list afterwards.
|
|
|
|
* I *think* this is correct --- doing the fix before recursing is
|
|
|
|
* definitely wrong, because preprocess_targetlist() will do the
|
|
|
|
* wrong thing if invoked twice on the same list. Maybe that is a bug?
|
|
|
|
* tgl 6/6/99
|
|
|
|
*/
|
1997-12-20 07:59:44 +00:00
|
|
|
tlist = preprocess_targetlist(tlist,
|
1999-05-25 16:15:34 +00:00
|
|
|
parse->commandType,
|
|
|
|
parse->resultRelation,
|
|
|
|
parse->rtable);
|
1999-06-06 17:38:11 +00:00
|
|
|
|
|
|
|
if (parse->rowMark != NULL)
|
|
|
|
elog(ERROR, "SELECT FOR UPDATE is not supported for inherit queries");
|
1999-08-22 23:56:45 +00:00
|
|
|
/*
|
|
|
|
* We leave current_pathkeys NIL indicating we do not know sort order
|
|
|
|
* of the Append-ed results.
|
|
|
|
*/
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
|
|
|
else
|
1997-12-18 19:41:44 +00:00
|
|
|
{
|
1999-05-25 16:15:34 +00:00
|
|
|
List *sub_tlist;
|
1999-04-19 01:43:12 +00:00
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
/* Preprocess targetlist in case we are inside an INSERT/UPDATE. */
|
|
|
|
tlist = preprocess_targetlist(tlist,
|
|
|
|
parse->commandType,
|
|
|
|
parse->resultRelation,
|
|
|
|
parse->rtable);
|
1999-01-25 12:01:19 +00:00
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
/*
|
|
|
|
* Add row-mark targets for UPDATE (should this be done in
|
|
|
|
* preprocess_targetlist?)
|
|
|
|
*/
|
|
|
|
if (parse->rowMark != NULL)
|
|
|
|
{
|
|
|
|
List *l;
|
|
|
|
|
|
|
|
foreach(l, parse->rowMark)
|
|
|
|
{
|
|
|
|
RowMark *rowmark = (RowMark *) lfirst(l);
|
|
|
|
TargetEntry *ctid;
|
|
|
|
Resdom *resdom;
|
|
|
|
Var *var;
|
|
|
|
char *resname;
|
|
|
|
|
|
|
|
if (!(rowmark->info & ROW_MARK_FOR_UPDATE))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
resname = (char *) palloc(32);
|
|
|
|
sprintf(resname, "ctid%u", rowmark->rti);
|
|
|
|
resdom = makeResdom(length(tlist) + 1,
|
|
|
|
TIDOID,
|
|
|
|
-1,
|
|
|
|
resname,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
true);
|
|
|
|
|
1999-08-22 20:15:04 +00:00
|
|
|
var = makeVar(rowmark->rti, -1, TIDOID, -1, 0);
|
1999-05-25 16:15:34 +00:00
|
|
|
|
|
|
|
ctid = makeTargetEntry(resdom, (Node *) var);
|
|
|
|
tlist = lappend(tlist, ctid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-22 23:56:45 +00:00
|
|
|
/*
|
|
|
|
* Generate appropriate target list for subplan; may be different
|
|
|
|
* from tlist if grouping or aggregation is needed.
|
|
|
|
*/
|
|
|
|
sub_tlist = make_subplanTargetList(parse, tlist, &groupColIdx);
|
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
/*
|
|
|
|
* Figure out whether we need a sorted result from query_planner.
|
|
|
|
*
|
|
|
|
* If we have a GROUP BY clause, then we want a result sorted
|
1999-08-22 23:56:45 +00:00
|
|
|
* properly for grouping. Otherwise, if there is an ORDER BY clause,
|
|
|
|
* we want to sort by the ORDER BY clause.
|
1999-08-21 03:49:17 +00:00
|
|
|
*/
|
|
|
|
if (parse->groupClause)
|
|
|
|
{
|
|
|
|
parse->query_pathkeys =
|
|
|
|
make_pathkeys_for_sortclauses(parse->groupClause, tlist);
|
|
|
|
}
|
1999-08-22 23:56:45 +00:00
|
|
|
else if (parse->sortClause)
|
1999-08-21 03:49:17 +00:00
|
|
|
{
|
|
|
|
parse->query_pathkeys =
|
|
|
|
make_pathkeys_for_sortclauses(parse->sortClause, tlist);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
parse->query_pathkeys = NIL;
|
|
|
|
}
|
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
/* Generate the (sub) plan */
|
|
|
|
result_plan = query_planner(parse,
|
|
|
|
parse->commandType,
|
|
|
|
sub_tlist,
|
|
|
|
(List *) parse->qual);
|
1999-08-21 03:49:17 +00:00
|
|
|
|
1999-08-22 23:56:45 +00:00
|
|
|
/* query_planner returns actual sort order (which is not
|
|
|
|
* necessarily what we requested) in query_pathkeys.
|
1999-08-21 03:49:17 +00:00
|
|
|
*/
|
1999-08-22 23:56:45 +00:00
|
|
|
current_pathkeys = parse->query_pathkeys;
|
1997-12-18 19:41:44 +00:00
|
|
|
}
|
1999-05-25 16:15:34 +00:00
|
|
|
|
1999-06-12 19:27:41 +00:00
|
|
|
/* query_planner returns NULL if it thinks plan is bogus */
|
|
|
|
if (! result_plan)
|
|
|
|
elog(ERROR, "union_planner: failed to create plan");
|
|
|
|
|
1997-12-20 07:59:44 +00:00
|
|
|
/*
|
1999-08-21 03:49:17 +00:00
|
|
|
* If we have a GROUP BY clause, insert a group node (plus the
|
|
|
|
* appropriate sort node, if necessary).
|
1997-12-20 07:59:44 +00:00
|
|
|
*/
|
1998-01-15 19:00:16 +00:00
|
|
|
if (parse->groupClause)
|
1997-12-20 07:59:44 +00:00
|
|
|
{
|
|
|
|
bool tuplePerGroup;
|
1999-05-03 00:38:44 +00:00
|
|
|
List *group_tlist;
|
1999-08-22 23:56:45 +00:00
|
|
|
List *group_pathkeys;
|
|
|
|
bool is_sorted;
|
1997-12-20 07:59:44 +00:00
|
|
|
|
|
|
|
/*
|
1999-05-03 00:38:44 +00:00
|
|
|
* Decide whether how many tuples per group the Group node needs
|
1997-12-20 07:59:44 +00:00
|
|
|
* to return. (Needs only one tuple per group if no aggregate is
|
|
|
|
* present. Otherwise, need every tuple from the group to do the
|
1999-05-03 00:38:44 +00:00
|
|
|
* aggregation.) Note tuplePerGroup is named backwards :-(
|
1997-12-20 07:59:44 +00:00
|
|
|
*/
|
1998-01-15 19:00:16 +00:00
|
|
|
tuplePerGroup = parse->hasAggs;
|
1997-12-20 07:59:44 +00:00
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
/*
|
|
|
|
* If there are aggregates then the Group node should just return
|
1999-08-21 03:49:17 +00:00
|
|
|
* the same set of vars as the subplan did (but we can exclude
|
|
|
|
* any GROUP BY expressions). If there are no aggregates
|
1999-05-03 00:38:44 +00:00
|
|
|
* then the Group node had better compute the final tlist.
|
|
|
|
*/
|
1999-08-21 03:49:17 +00:00
|
|
|
if (parse->hasAggs)
|
|
|
|
group_tlist = flatten_tlist(result_plan->targetlist);
|
|
|
|
else
|
|
|
|
group_tlist = tlist;
|
1999-05-03 00:38:44 +00:00
|
|
|
|
1999-08-22 23:56:45 +00:00
|
|
|
/*
|
|
|
|
* Figure out whether the path result is already ordered the way we
|
|
|
|
* need it --- if so, no need for an explicit sort step.
|
|
|
|
*/
|
|
|
|
group_pathkeys = make_pathkeys_for_sortclauses(parse->groupClause,
|
|
|
|
tlist);
|
|
|
|
if (pathkeys_contained_in(group_pathkeys, current_pathkeys))
|
|
|
|
{
|
|
|
|
is_sorted = true; /* no sort needed now */
|
|
|
|
/* current_pathkeys remains unchanged */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We will need to do an explicit sort by the GROUP BY clause.
|
|
|
|
* make_groupplan will do the work, but set current_pathkeys
|
|
|
|
* to indicate the resulting order.
|
|
|
|
*/
|
|
|
|
is_sorted = false;
|
|
|
|
current_pathkeys = group_pathkeys;
|
|
|
|
}
|
|
|
|
|
1999-05-03 00:38:44 +00:00
|
|
|
result_plan = make_groupplan(group_tlist,
|
|
|
|
tuplePerGroup,
|
|
|
|
parse->groupClause,
|
|
|
|
groupColIdx,
|
1999-08-21 03:49:17 +00:00
|
|
|
is_sorted,
|
1999-05-03 00:38:44 +00:00
|
|
|
result_plan);
|
1997-12-20 07:59:44 +00:00
|
|
|
}
|
|
|
|
|
1999-04-19 01:43:12 +00:00
|
|
|
/*
|
|
|
|
* If we have a HAVING clause, do the necessary things with it.
|
|
|
|
*/
|
|
|
|
if (parse->havingQual)
|
|
|
|
{
|
1999-08-22 20:15:04 +00:00
|
|
|
List *ql;
|
|
|
|
|
1999-04-19 01:43:12 +00:00
|
|
|
/* convert the havingQual to conjunctive normal form (cnf) */
|
|
|
|
parse->havingQual = (Node *) cnfify((Expr *) parse->havingQual, true);
|
|
|
|
|
|
|
|
if (parse->hasSubLinks)
|
|
|
|
{
|
1999-05-25 16:15:34 +00:00
|
|
|
/*
|
1999-06-21 01:20:57 +00:00
|
|
|
* There may be a subselect in the havingQual, so we have to
|
1999-05-25 16:15:34 +00:00
|
|
|
* process it using the same function as for a subselect in
|
|
|
|
* 'where'
|
1999-04-19 01:43:12 +00:00
|
|
|
*/
|
1999-06-21 01:20:57 +00:00
|
|
|
parse->havingQual = SS_process_sublinks(parse->havingQual);
|
1999-05-25 16:15:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for ungrouped variables passed to subplans. (Probably
|
1999-06-21 01:20:57 +00:00
|
|
|
* this should be done for the targetlist as well???)
|
1999-04-19 01:43:12 +00:00
|
|
|
*/
|
1999-08-22 20:15:04 +00:00
|
|
|
if (check_subplans_for_ungrouped_vars(parse->havingQual,
|
|
|
|
parse->groupClause,
|
|
|
|
parse->targetList))
|
|
|
|
elog(ERROR, "Sub-SELECT in HAVING clause must use only GROUPed attributes from outer SELECT");
|
1999-04-19 01:43:12 +00:00
|
|
|
}
|
|
|
|
|
1999-08-22 20:15:04 +00:00
|
|
|
/*
|
|
|
|
* Require an aggregate function to appear in each clause of the
|
|
|
|
* havingQual (else it could have been done as a WHERE constraint).
|
|
|
|
*/
|
|
|
|
foreach(ql, (List *) parse->havingQual)
|
|
|
|
{
|
|
|
|
if (pull_agg_clause(lfirst(ql)) == NIL)
|
|
|
|
elog(ERROR, "SELECT/HAVING requires aggregates to be valid");
|
|
|
|
}
|
1999-04-19 01:43:12 +00:00
|
|
|
}
|
|
|
|
|
1997-12-20 07:59:44 +00:00
|
|
|
/*
|
|
|
|
* If aggregate is present, insert the agg node
|
|
|
|
*/
|
1998-01-15 19:00:16 +00:00
|
|
|
if (parse->hasAggs)
|
1997-12-20 07:59:44 +00:00
|
|
|
{
|
1998-02-26 04:46:47 +00:00
|
|
|
result_plan = (Plan *) make_agg(tlist, result_plan);
|
1997-12-20 07:59:44 +00:00
|
|
|
|
1999-04-19 01:43:12 +00:00
|
|
|
/* HAVING clause, if any, becomes qual of the Agg node */
|
|
|
|
result_plan->qual = (List *) parse->havingQual;
|
|
|
|
|
1999-08-22 23:56:45 +00:00
|
|
|
/* Note: Agg does not affect any existing sort order of the tuples */
|
1999-05-25 16:15:34 +00:00
|
|
|
}
|
1999-01-25 12:01:19 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
/*
|
1999-08-21 03:49:17 +00:00
|
|
|
* If we were not able to make the plan come out in the right order,
|
|
|
|
* add an explicit sort step.
|
1997-09-07 05:04:48 +00:00
|
|
|
*/
|
1999-08-22 23:56:45 +00:00
|
|
|
if (parse->sortClause)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
1999-08-22 23:56:45 +00:00
|
|
|
List *sort_pathkeys;
|
|
|
|
|
|
|
|
sort_pathkeys = make_pathkeys_for_sortclauses(parse->sortClause,
|
|
|
|
tlist);
|
|
|
|
if (! pathkeys_contained_in(sort_pathkeys, current_pathkeys))
|
|
|
|
{
|
|
|
|
result_plan = make_sortplan(tlist, parse->sortClause, result_plan);
|
|
|
|
}
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
1999-08-21 03:49:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Finally, if there is a UNIQUE clause, add the UNIQUE node.
|
|
|
|
*/
|
|
|
|
if (parse->uniqueFlag)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
result_plan = (Plan *) make_unique(tlist, result_plan,
|
|
|
|
parse->uniqueFlag);
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
1996-07-09 06:22:35 +00:00
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
return result_plan;
|
1996-07-09 06:22:35 +00:00
|
|
|
}
|
|
|
|
|
1999-05-03 00:38:44 +00:00
|
|
|
/*---------------
|
|
|
|
* make_subplanTargetList
|
1999-08-21 03:49:17 +00:00
|
|
|
* Generate appropriate target list when grouping is required.
|
1999-05-03 00:38:44 +00:00
|
|
|
*
|
1999-08-21 03:49:17 +00:00
|
|
|
* When union_planner inserts Aggregate and/or Group plan nodes above
|
|
|
|
* the result of query_planner, we typically want to pass a different
|
1999-05-03 00:38:44 +00:00
|
|
|
* target list to query_planner than the outer plan nodes should have.
|
1999-08-21 03:49:17 +00:00
|
|
|
* This routine generates the correct target list for the subplan.
|
1999-05-03 00:38:44 +00:00
|
|
|
*
|
|
|
|
* The initial target list passed from the parser already contains entries
|
|
|
|
* for all ORDER BY and GROUP BY expressions, but it will not have entries
|
|
|
|
* for variables used only in HAVING clauses; so we need to add those
|
|
|
|
* variables to the subplan target list. Also, if we are doing either
|
|
|
|
* grouping or aggregation, we flatten all expressions except GROUP BY items
|
|
|
|
* into their component variables; the other expressions will be computed by
|
|
|
|
* the inserted nodes rather than by the subplan. For example,
|
|
|
|
* given a query like
|
|
|
|
* SELECT a+b,SUM(c+d) FROM table GROUP BY a+b;
|
|
|
|
* we want to pass this targetlist to the subplan:
|
1999-08-21 03:49:17 +00:00
|
|
|
* a,b,c,d,a+b
|
1999-05-03 00:38:44 +00:00
|
|
|
* where the a+b target will be used by the Sort/Group steps, and the
|
1999-08-21 03:49:17 +00:00
|
|
|
* other targets will be used for computing the final results. (In the
|
|
|
|
* above example we could theoretically suppress the a and b targets and
|
|
|
|
* use only a+b, but it's not really worth the trouble.)
|
1999-05-03 00:38:44 +00:00
|
|
|
*
|
|
|
|
* 'parse' is the query being processed.
|
1999-08-21 03:49:17 +00:00
|
|
|
* 'tlist' is the query's target list.
|
1999-05-03 00:38:44 +00:00
|
|
|
* 'groupColIdx' receives an array of column numbers for the GROUP BY
|
|
|
|
* expressions (if there are any) in the subplan's target list.
|
|
|
|
*
|
1999-08-21 03:49:17 +00:00
|
|
|
* The result is the targetlist to be passed to the subplan.
|
1999-05-03 00:38:44 +00:00
|
|
|
*---------------
|
|
|
|
*/
|
|
|
|
static List *
|
|
|
|
make_subplanTargetList(Query *parse,
|
|
|
|
List *tlist,
|
|
|
|
AttrNumber **groupColIdx)
|
|
|
|
{
|
|
|
|
List *sub_tlist;
|
1999-08-21 03:49:17 +00:00
|
|
|
List *extravars;
|
1999-05-03 00:38:44 +00:00
|
|
|
int numCols;
|
|
|
|
|
|
|
|
*groupColIdx = NULL;
|
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
/*
|
|
|
|
* If we're not grouping or aggregating, nothing to do here;
|
1999-05-03 00:38:44 +00:00
|
|
|
* query_planner should receive the unmodified target list.
|
|
|
|
*/
|
|
|
|
if (!parse->hasAggs && !parse->groupClause && !parse->havingQual)
|
|
|
|
return tlist;
|
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
/*
|
1999-08-21 03:49:17 +00:00
|
|
|
* Otherwise, start with a "flattened" tlist (having just the vars
|
|
|
|
* mentioned in the targetlist and HAVING qual).
|
1999-05-03 00:38:44 +00:00
|
|
|
*/
|
1999-08-21 03:49:17 +00:00
|
|
|
sub_tlist = flatten_tlist(tlist);
|
|
|
|
extravars = pull_var_clause(parse->havingQual);
|
|
|
|
sub_tlist = add_to_flat_tlist(sub_tlist, extravars);
|
|
|
|
freeList(extravars);
|
1999-05-03 00:38:44 +00:00
|
|
|
|
|
|
|
/*
|
1999-08-21 03:49:17 +00:00
|
|
|
* If grouping, create sub_tlist entries for all GROUP BY expressions
|
|
|
|
* (GROUP BY items that are simple Vars should be in the list already),
|
|
|
|
* and make an array showing where the group columns are in the sub_tlist.
|
1999-05-03 00:38:44 +00:00
|
|
|
*/
|
1999-08-21 03:49:17 +00:00
|
|
|
numCols = length(parse->groupClause);
|
|
|
|
if (numCols > 0)
|
1999-05-03 00:38:44 +00:00
|
|
|
{
|
|
|
|
int keyno = 0;
|
1999-08-21 03:49:17 +00:00
|
|
|
AttrNumber *grpColIdx;
|
|
|
|
List *gl;
|
|
|
|
|
|
|
|
grpColIdx = (AttrNumber *) palloc(sizeof(AttrNumber) * numCols);
|
|
|
|
*groupColIdx = grpColIdx;
|
1999-05-03 00:38:44 +00:00
|
|
|
|
|
|
|
foreach(gl, parse->groupClause)
|
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
GroupClause *grpcl = (GroupClause *) lfirst(gl);
|
|
|
|
Node *groupexpr = get_sortgroupclause_expr(grpcl, tlist);
|
|
|
|
TargetEntry *te = NULL;
|
|
|
|
List *sl;
|
1999-05-03 00:38:44 +00:00
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
/* Find or make a matching sub_tlist entry */
|
|
|
|
foreach(sl, sub_tlist)
|
1999-05-03 00:38:44 +00:00
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
te = (TargetEntry *) lfirst(sl);
|
|
|
|
if (equal(groupexpr, te->expr))
|
|
|
|
break;
|
1999-05-03 00:38:44 +00:00
|
|
|
}
|
1999-08-21 03:49:17 +00:00
|
|
|
if (! sl)
|
1999-05-03 00:38:44 +00:00
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
te = makeTargetEntry(makeResdom(length(sub_tlist) + 1,
|
|
|
|
exprType(groupexpr),
|
|
|
|
exprTypmod(groupexpr),
|
|
|
|
NULL,
|
|
|
|
(Index) 0,
|
|
|
|
(Oid) 0,
|
|
|
|
false),
|
|
|
|
groupexpr);
|
|
|
|
sub_tlist = lappend(sub_tlist, te);
|
1999-05-03 00:38:44 +00:00
|
|
|
}
|
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
/* and save its resno */
|
|
|
|
grpColIdx[keyno++] = te->resdom->resno;
|
1999-05-03 00:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sub_tlist;
|
|
|
|
}
|
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
/*
|
|
|
|
* make_groupplan
|
|
|
|
* Add a Group node for GROUP BY processing.
|
|
|
|
* If we couldn't make the subplan produce presorted output for grouping,
|
|
|
|
* first add an explicit Sort node.
|
|
|
|
*/
|
1999-05-03 00:38:44 +00:00
|
|
|
static Plan *
|
|
|
|
make_groupplan(List *group_tlist,
|
|
|
|
bool tuplePerGroup,
|
|
|
|
List *groupClause,
|
|
|
|
AttrNumber *grpColIdx,
|
1999-08-22 23:56:45 +00:00
|
|
|
bool is_presorted,
|
1999-05-03 00:38:44 +00:00
|
|
|
Plan *subplan)
|
|
|
|
{
|
|
|
|
int numCols = length(groupClause);
|
|
|
|
|
1999-08-22 23:56:45 +00:00
|
|
|
if (! is_presorted)
|
1999-05-03 00:38:44 +00:00
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
/*
|
|
|
|
* The Sort node always just takes a copy of the subplan's tlist
|
|
|
|
* plus ordering information. (This might seem inefficient if the
|
|
|
|
* subplan contains complex GROUP BY expressions, but in fact Sort
|
|
|
|
* does not evaluate its targetlist --- it only outputs the same
|
|
|
|
* tuples in a new order. So the expressions we might be copying
|
|
|
|
* are just dummies with no extra execution cost.)
|
|
|
|
*/
|
|
|
|
List *sort_tlist = new_unsorted_tlist(subplan->targetlist);
|
|
|
|
int keyno = 0;
|
|
|
|
List *gl;
|
1999-05-03 00:38:44 +00:00
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
foreach(gl, groupClause)
|
1999-05-03 00:38:44 +00:00
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
GroupClause *grpcl = (GroupClause *) lfirst(gl);
|
|
|
|
TargetEntry *te = nth(grpColIdx[keyno]-1, sort_tlist);
|
|
|
|
Resdom *resdom = te->resdom;
|
1999-05-25 16:15:34 +00:00
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
/*
|
|
|
|
* Check for the possibility of duplicate group-by clauses --- the
|
|
|
|
* parser should have removed 'em, but the Sort executor will get
|
|
|
|
* terribly confused if any get through!
|
|
|
|
*/
|
|
|
|
if (resdom->reskey == 0)
|
|
|
|
{
|
|
|
|
/* OK, insert the ordering info needed by the executor. */
|
|
|
|
resdom->reskey = ++keyno;
|
|
|
|
resdom->reskeyop = get_opcode(grpcl->sortop);
|
|
|
|
}
|
1999-05-03 00:38:44 +00:00
|
|
|
}
|
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
subplan = (Plan *) make_sort(sort_tlist,
|
|
|
|
_NONAME_RELATION_ID_,
|
|
|
|
subplan,
|
|
|
|
keyno);
|
1999-05-03 00:38:44 +00:00
|
|
|
}
|
|
|
|
|
1999-08-22 20:15:04 +00:00
|
|
|
return (Plan *) make_group(group_tlist, tuplePerGroup, numCols,
|
|
|
|
grpColIdx, subplan);
|
1999-05-03 00:38:44 +00:00
|
|
|
}
|
|
|
|
|
1996-07-09 06:22:35 +00:00
|
|
|
/*
|
1999-02-13 23:22:53 +00:00
|
|
|
* make_sortplan
|
1999-08-21 03:49:17 +00:00
|
|
|
* Add a Sort node to implement an explicit ORDER BY clause.
|
1996-07-09 06:22:35 +00:00
|
|
|
*/
|
1997-09-08 02:41:22 +00:00
|
|
|
static Plan *
|
1997-09-08 21:56:23 +00:00
|
|
|
make_sortplan(List *tlist, List *sortcls, Plan *plannode)
|
1996-07-09 06:22:35 +00:00
|
|
|
{
|
1999-08-21 03:49:17 +00:00
|
|
|
List *temp_tlist;
|
|
|
|
List *i;
|
|
|
|
int keyno = 0;
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/*
|
1999-08-21 03:49:17 +00:00
|
|
|
* First make a copy of the tlist so that we don't corrupt the
|
|
|
|
* original.
|
1997-09-07 05:04:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
temp_tlist = new_unsorted_tlist(tlist);
|
|
|
|
|
|
|
|
foreach(i, sortcls)
|
|
|
|
{
|
1997-09-08 02:41:22 +00:00
|
|
|
SortClause *sortcl = (SortClause *) lfirst(i);
|
1999-08-21 03:49:17 +00:00
|
|
|
Index refnumber = sortcl->tleSortGroupRef;
|
|
|
|
TargetEntry *tle = NULL;
|
|
|
|
Resdom *resdom;
|
|
|
|
List *l;
|
1997-09-07 05:04:48 +00:00
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
foreach(l, temp_tlist)
|
|
|
|
{
|
|
|
|
tle = (TargetEntry *) lfirst(l);
|
|
|
|
if (tle->resdom->ressortgroupref == refnumber)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (l == NIL)
|
|
|
|
elog(ERROR, "make_sortplan: ORDER BY expression not found in targetlist");
|
|
|
|
resdom = tle->resdom;
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/*
|
1999-08-21 03:49:17 +00:00
|
|
|
* Check for the possibility of duplicate order-by clauses --- the
|
|
|
|
* parser should have removed 'em, but the executor will get terribly
|
|
|
|
* confused if any get through!
|
1997-09-07 05:04:48 +00:00
|
|
|
*/
|
1999-08-21 03:49:17 +00:00
|
|
|
if (resdom->reskey == 0)
|
|
|
|
{
|
|
|
|
/* OK, insert the ordering info needed by the executor. */
|
|
|
|
resdom->reskey = ++keyno;
|
|
|
|
resdom->reskeyop = get_opcode(sortcl->sortop);
|
|
|
|
}
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
|
|
|
|
1999-08-21 03:49:17 +00:00
|
|
|
return (Plan *) make_sort(temp_tlist,
|
|
|
|
_NONAME_RELATION_ID_,
|
|
|
|
plannode,
|
|
|
|
keyno);
|
1996-07-09 06:22:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pg_checkretval() -- check return value of a list of sql parse
|
1997-09-07 05:04:48 +00:00
|
|
|
* trees.
|
1996-07-09 06:22:35 +00:00
|
|
|
*
|
|
|
|
* The return value of a sql function is the value returned by
|
|
|
|
* the final query in the function. We do some ad-hoc define-time
|
|
|
|
* type checking here to be sure that the user is returning the
|
|
|
|
* type he claims.
|
1999-05-03 00:38:44 +00:00
|
|
|
*
|
|
|
|
* XXX Why is this function in this module?
|
1996-07-09 06:22:35 +00:00
|
|
|
*/
|
|
|
|
void
|
1999-05-13 07:29:22 +00:00
|
|
|
pg_checkretval(Oid rettype, List *queryTreeList)
|
1996-07-09 06:22:35 +00:00
|
|
|
{
|
1997-09-08 02:41:22 +00:00
|
|
|
Query *parse;
|
|
|
|
List *tlist;
|
|
|
|
List *rt;
|
|
|
|
int cmd;
|
|
|
|
Type typ;
|
|
|
|
Resdom *resnode;
|
|
|
|
Relation reln;
|
|
|
|
Oid relid;
|
|
|
|
Oid tletype;
|
|
|
|
int relnatts;
|
|
|
|
int i;
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/* find the final query */
|
1999-05-25 16:15:34 +00:00
|
|
|
parse = (Query *) nth(length(queryTreeList) - 1, queryTreeList);
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* test 1: if the last query is a utility invocation, then there had
|
|
|
|
* better not be a return value declared.
|
|
|
|
*/
|
|
|
|
if (parse->commandType == CMD_UTILITY)
|
|
|
|
{
|
|
|
|
if (rettype == InvalidOid)
|
|
|
|
return;
|
|
|
|
else
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "return type mismatch in function decl: final query is a catalog utility");
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* okay, it's an ordinary query */
|
|
|
|
tlist = parse->targetList;
|
|
|
|
rt = parse->rtable;
|
|
|
|
cmd = parse->commandType;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* test 2: if the function is declared to return no value, then the
|
|
|
|
* final query had better not be a retrieve.
|
|
|
|
*/
|
1996-07-09 06:22:35 +00:00
|
|
|
if (rettype == InvalidOid)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
|
|
|
if (cmd == CMD_SELECT)
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR,
|
1997-09-07 05:04:48 +00:00
|
|
|
"function declared with no return type, but final query is a retrieve");
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* by here, the function is declared to return some type */
|
1997-11-25 22:07:18 +00:00
|
|
|
if ((typ = typeidType(rettype)) == NULL)
|
1999-05-10 00:46:32 +00:00
|
|
|
elog(ERROR, "can't find return type %u for function\n", rettype);
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* test 3: if the function is declared to return a value, then the
|
|
|
|
* final query had better be a retrieve.
|
|
|
|
*/
|
|
|
|
if (cmd != CMD_SELECT)
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "function declared to return type %s, but final query is not a retrieve", typeTypeName(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* test 4: for base type returns, the target list should have exactly
|
|
|
|
* one entry, and its type should agree with what the user declared.
|
|
|
|
*/
|
|
|
|
|
1997-11-25 22:07:18 +00:00
|
|
|
if (typeTypeRelid(typ) == InvalidOid)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
1998-07-20 21:18:35 +00:00
|
|
|
if (ExecTargetListLength(tlist) > 1)
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "function declared to return %s returns multiple values in final retrieve", typeTypeName(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
resnode = (Resdom *) ((TargetEntry *) lfirst(tlist))->resdom;
|
|
|
|
if (resnode->restype != rettype)
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "return type mismatch in function: declared to return %s, returns %s", typeTypeName(typ), typeidTypeName(resnode->restype));
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/* by here, base return types match */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the target list is of length 1, and the type of the varnode in
|
|
|
|
* the target list is the same as the declared return type, this is
|
|
|
|
* okay. This can happen, for example, where the body of the function
|
|
|
|
* is 'retrieve (x = func2())', where func2 has the same return type
|
|
|
|
* as the function that's calling it.
|
|
|
|
*/
|
1998-07-20 21:18:35 +00:00
|
|
|
if (ExecTargetListLength(tlist) == 1)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
|
|
|
resnode = (Resdom *) ((TargetEntry *) lfirst(tlist))->resdom;
|
|
|
|
if (resnode->restype == rettype)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* By here, the procedure returns a (set of) tuples. This part of the
|
|
|
|
* typechecking is a hack. We look up the relation that is the
|
|
|
|
* declared return type, and be sure that attributes 1 .. n in the
|
|
|
|
* target list match the declared types.
|
|
|
|
*/
|
1997-11-25 22:07:18 +00:00
|
|
|
reln = heap_open(typeTypeRelid(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
if (!RelationIsValid(reln))
|
1999-05-10 00:46:32 +00:00
|
|
|
elog(ERROR, "cannot open relation relid %u", typeTypeRelid(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
relid = reln->rd_id;
|
|
|
|
relnatts = reln->rd_rel->relnatts;
|
|
|
|
|
1998-07-20 21:18:35 +00:00
|
|
|
if (ExecTargetListLength(tlist) != relnatts)
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "function declared to return type %s does not retrieve (%s.*)", typeTypeName(typ), typeTypeName(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
/* expect attributes 1 .. n in order */
|
|
|
|
for (i = 1; i <= relnatts; i++)
|
|
|
|
{
|
1997-09-08 02:41:22 +00:00
|
|
|
TargetEntry *tle = lfirst(tlist);
|
|
|
|
Node *thenode = tle->expr;
|
1997-09-07 05:04:48 +00:00
|
|
|
|
|
|
|
tlist = lnext(tlist);
|
|
|
|
tletype = exprType(thenode);
|
|
|
|
|
1999-05-25 16:15:34 +00:00
|
|
|
#ifdef NOT_USED /* fix me */
|
1997-09-07 05:04:48 +00:00
|
|
|
/* this is tedious */
|
|
|
|
if (IsA(thenode, Var))
|
|
|
|
tletype = (Oid) ((Var *) thenode)->vartype;
|
|
|
|
else if (IsA(thenode, Const))
|
|
|
|
tletype = (Oid) ((Const *) thenode)->consttype;
|
|
|
|
else if (IsA(thenode, Param))
|
|
|
|
tletype = (Oid) ((Param *) thenode)->paramtype;
|
|
|
|
else if (IsA(thenode, Expr))
|
|
|
|
tletype = Expr;
|
1997-09-08 21:56:23 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
else if (IsA(thenode, LispList))
|
|
|
|
{
|
|
|
|
thenode = lfirst(thenode);
|
|
|
|
if (IsA(thenode, Oper))
|
|
|
|
tletype = (Oid) get_opresulttype((Oper *) thenode);
|
|
|
|
else if (IsA(thenode, Func))
|
|
|
|
tletype = (Oid) get_functype((Func *) thenode);
|
|
|
|
else
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "function declared to return type %s does not retrieve (%s.all)", typeTypeName(typ), typeTypeName(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
|
|
|
else
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "function declared to return type %s does not retrieve (%s.all)", typeTypeName(typ), typeTypeName(typ));
|
1997-09-05 20:20:56 +00:00
|
|
|
#endif
|
1997-09-07 05:04:48 +00:00
|
|
|
/* reach right in there, why don't you? */
|
|
|
|
if (tletype != reln->rd_att->attrs[i - 1]->atttypid)
|
1998-01-07 21:07:04 +00:00
|
|
|
elog(ERROR, "function declared to return type %s does not retrieve (%s.all)", typeTypeName(typ), typeTypeName(typ));
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
1996-07-09 06:22:35 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
heap_close(reln);
|
1996-07-09 06:22:35 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
/* success */
|
|
|
|
return;
|
1996-07-09 06:22:35 +00:00
|
|
|
}
|