]> granicus.if.org Git - postgresql/blob - src/backend/optimizer/plan/planner.c
Repair optimization bug I introduced in a moment of brain fade back in
[postgresql] / src / backend / optimizer / plan / planner.c
1 /*-------------------------------------------------------------------------
2  *
3  * planner.c
4  *        The query optimizer external interface.
5  *
6  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  *        $PostgreSQL: pgsql/src/backend/optimizer/plan/planner.c,v 1.167 2004/02/13 22:26:30 tgl Exp $
12  *
13  *-------------------------------------------------------------------------
14  */
15
16 #include "postgres.h"
17
18 #include <limits.h>
19
20 #include "catalog/pg_operator.h"
21 #include "catalog/pg_type.h"
22 #include "executor/executor.h"
23 #include "miscadmin.h"
24 #include "nodes/makefuncs.h"
25 #ifdef OPTIMIZER_DEBUG
26 #include "nodes/print.h"
27 #endif
28 #include "optimizer/clauses.h"
29 #include "optimizer/cost.h"
30 #include "optimizer/pathnode.h"
31 #include "optimizer/paths.h"
32 #include "optimizer/planmain.h"
33 #include "optimizer/planner.h"
34 #include "optimizer/prep.h"
35 #include "optimizer/subselect.h"
36 #include "optimizer/tlist.h"
37 #include "optimizer/var.h"
38 #include "parser/analyze.h"
39 #include "parser/parsetree.h"
40 #include "parser/parse_expr.h"
41 #include "parser/parse_oper.h"
42 #include "utils/selfuncs.h"
43 #include "utils/syscache.h"
44
45
46 /* Expression kind codes for preprocess_expression */
47 #define EXPRKIND_QUAL   0
48 #define EXPRKIND_TARGET 1
49 #define EXPRKIND_RTFUNC 2
50 #define EXPRKIND_LIMIT  3
51 #define EXPRKIND_ININFO 4
52
53
54 static Node *preprocess_expression(Query *parse, Node *expr, int kind);
55 static void preprocess_qual_conditions(Query *parse, Node *jtnode);
56 static Plan *inheritance_planner(Query *parse, List *inheritlist);
57 static Plan *grouping_planner(Query *parse, double tuple_fraction);
58 static bool hash_safe_grouping(Query *parse);
59 static List *make_subplanTargetList(Query *parse, List *tlist,
60                                            AttrNumber **groupColIdx, bool *need_tlist_eval);
61 static void locate_grouping_columns(Query *parse,
62                                                 List *tlist,
63                                                 List *sub_tlist,
64                                                 AttrNumber *groupColIdx);
65 static List *postprocess_setop_tlist(List *new_tlist, List *orig_tlist);
66
67
68 /*****************************************************************************
69  *
70  *         Query optimizer entry point
71  *
72  *****************************************************************************/
73 Plan *
74 planner(Query *parse, bool isCursor, int cursorOptions)
75 {
76         double          tuple_fraction;
77         Plan       *result_plan;
78         Index           save_PlannerQueryLevel;
79         List       *save_PlannerParamList;
80
81         /*
82          * The planner can be called recursively (an example is when
83          * eval_const_expressions tries to pre-evaluate an SQL function). So,
84          * these global state variables must be saved and restored.
85          *
86          * These vars cannot be moved into the Query structure since their whole
87          * purpose is communication across multiple sub-Queries.
88          *
89          * Note we do NOT save and restore PlannerPlanId: it exists to assign
90          * unique IDs to SubPlan nodes, and we want those IDs to be unique for
91          * the life of a backend.  Also, PlannerInitPlan is saved/restored in
92          * subquery_planner, not here.
93          */
94         save_PlannerQueryLevel = PlannerQueryLevel;
95         save_PlannerParamList = PlannerParamList;
96
97         /* Initialize state for handling outer-level references and params */
98         PlannerQueryLevel = 0;          /* will be 1 in top-level subquery_planner */
99         PlannerParamList = NIL;
100
101         /* Determine what fraction of the plan is likely to be scanned */
102         if (isCursor)
103         {
104                 /*
105                  * We have no real idea how many tuples the user will ultimately
106                  * FETCH from a cursor, but it seems a good bet that he doesn't
107                  * want 'em all.  Optimize for 10% retrieval (you gotta better
108                  * number?      Should this be a SETtable parameter?)
109                  */
110                 tuple_fraction = 0.10;
111         }
112         else
113         {
114                 /* Default assumption is we need all the tuples */
115                 tuple_fraction = 0.0;
116         }
117
118         /* primary planning entry point (may recurse for subqueries) */
119         result_plan = subquery_planner(parse, tuple_fraction);
120
121         Assert(PlannerQueryLevel == 0);
122
123         /*
124          * If creating a plan for a scrollable cursor, make sure it can run
125          * backwards on demand.  Add a Material node at the top at need.
126          */
127         if (isCursor && (cursorOptions & CURSOR_OPT_SCROLL))
128         {
129                 if (!ExecSupportsBackwardScan(result_plan))
130                         result_plan = materialize_finished_plan(result_plan);
131         }
132
133         /* executor wants to know total number of Params used overall */
134         result_plan->nParamExec = length(PlannerParamList);
135
136         /* final cleanup of the plan */
137         set_plan_references(result_plan, parse->rtable);
138
139         /* restore state for outer planner, if any */
140         PlannerQueryLevel = save_PlannerQueryLevel;
141         PlannerParamList = save_PlannerParamList;
142
143         return result_plan;
144 }
145
146
147 /*--------------------
148  * subquery_planner
149  *        Invokes the planner on a subquery.  We recurse to here for each
150  *        sub-SELECT found in the query tree.
151  *
152  * parse is the querytree produced by the parser & rewriter.
153  * tuple_fraction is the fraction of tuples we expect will be retrieved.
154  * tuple_fraction is interpreted as explained for grouping_planner, below.
155  *
156  * Basically, this routine does the stuff that should only be done once
157  * per Query object.  It then calls grouping_planner.  At one time,
158  * grouping_planner could be invoked recursively on the same Query object;
159  * that's not currently true, but we keep the separation between the two
160  * routines anyway, in case we need it again someday.
161  *
162  * subquery_planner will be called recursively to handle sub-Query nodes
163  * found within the query's expressions and rangetable.
164  *
165  * Returns a query plan.
166  *--------------------
167  */
168 Plan *
169 subquery_planner(Query *parse, double tuple_fraction)
170 {
171         List       *saved_initplan = PlannerInitPlan;
172         int                     saved_planid = PlannerPlanId;
173         bool            hasOuterJoins;
174         Plan       *plan;
175         List       *newHaving;
176         List       *lst;
177
178         /* Set up for a new level of subquery */
179         PlannerQueryLevel++;
180         PlannerInitPlan = NIL;
181
182         /*
183          * Look for IN clauses at the top level of WHERE, and transform them
184          * into joins.  Note that this step only handles IN clauses originally
185          * at top level of WHERE; if we pull up any subqueries in the next
186          * step, their INs are processed just before pulling them up.
187          */
188         parse->in_info_list = NIL;
189         if (parse->hasSubLinks)
190                 parse->jointree->quals = pull_up_IN_clauses(parse,
191                                                                                                  parse->jointree->quals);
192
193         /*
194          * Check to see if any subqueries in the rangetable can be merged into
195          * this query.
196          */
197         parse->jointree = (FromExpr *)
198                 pull_up_subqueries(parse, (Node *) parse->jointree, false);
199
200         /*
201          * Detect whether any rangetable entries are RTE_JOIN kind; if not, we
202          * can avoid the expense of doing flatten_join_alias_vars().  Also
203          * check for outer joins --- if none, we can skip
204          * reduce_outer_joins(). This must be done after we have done
205          * pull_up_subqueries, of course.
206          */
207         parse->hasJoinRTEs = false;
208         hasOuterJoins = false;
209         foreach(lst, parse->rtable)
210         {
211                 RangeTblEntry *rte = (RangeTblEntry *) lfirst(lst);
212
213                 if (rte->rtekind == RTE_JOIN)
214                 {
215                         parse->hasJoinRTEs = true;
216                         if (IS_OUTER_JOIN(rte->jointype))
217                         {
218                                 hasOuterJoins = true;
219                                 /* Can quit scanning once we find an outer join */
220                                 break;
221                         }
222                 }
223         }
224
225         /*
226          * Do expression preprocessing on targetlist and quals.
227          */
228         parse->targetList = (List *)
229                 preprocess_expression(parse, (Node *) parse->targetList,
230                                                           EXPRKIND_TARGET);
231
232         preprocess_qual_conditions(parse, (Node *) parse->jointree);
233
234         parse->havingQual = preprocess_expression(parse, parse->havingQual,
235                                                                                           EXPRKIND_QUAL);
236
237         parse->limitOffset = preprocess_expression(parse, parse->limitOffset,
238                                                                                            EXPRKIND_LIMIT);
239         parse->limitCount = preprocess_expression(parse, parse->limitCount,
240                                                                                           EXPRKIND_LIMIT);
241
242         parse->in_info_list = (List *)
243                 preprocess_expression(parse, (Node *) parse->in_info_list,
244                                                           EXPRKIND_ININFO);
245
246         /* Also need to preprocess expressions for function RTEs */
247         foreach(lst, parse->rtable)
248         {
249                 RangeTblEntry *rte = (RangeTblEntry *) lfirst(lst);
250
251                 if (rte->rtekind == RTE_FUNCTION)
252                         rte->funcexpr = preprocess_expression(parse, rte->funcexpr,
253                                                                                                   EXPRKIND_RTFUNC);
254         }
255
256         /*
257          * A HAVING clause without aggregates is equivalent to a WHERE clause
258          * (except it can only refer to grouped fields).  Transfer any
259          * agg-free clauses of the HAVING qual into WHERE.      This may seem like
260          * wasting cycles to cater to stupidly-written queries, but there are
261          * other reasons for doing it.  Firstly, if the query contains no aggs
262          * at all, then we aren't going to generate an Agg plan node, and so
263          * there'll be no place to execute HAVING conditions; without this
264          * transfer, we'd lose the HAVING condition entirely, which is wrong.
265          * Secondly, when we push down a qual condition into a sub-query, it's
266          * easiest to push the qual into HAVING always, in case it contains
267          * aggs, and then let this code sort it out.
268          *
269          * Note that both havingQual and parse->jointree->quals are in
270          * implicitly-ANDed-list form at this point, even though they are
271          * declared as Node *.
272          */
273         newHaving = NIL;
274         foreach(lst, (List *) parse->havingQual)
275         {
276                 Node       *havingclause = (Node *) lfirst(lst);
277
278                 if (contain_agg_clause(havingclause))
279                         newHaving = lappend(newHaving, havingclause);
280                 else
281                         parse->jointree->quals = (Node *)
282                                 lappend((List *) parse->jointree->quals, havingclause);
283         }
284         parse->havingQual = (Node *) newHaving;
285
286         /*
287          * If we have any outer joins, try to reduce them to plain inner
288          * joins. This step is most easily done after we've done expression
289          * preprocessing.
290          */
291         if (hasOuterJoins)
292                 reduce_outer_joins(parse);
293
294         /*
295          * See if we can simplify the jointree; opportunities for this may
296          * come from having pulled up subqueries, or from flattening explicit
297          * JOIN syntax.  We must do this after flattening JOIN alias
298          * variables, since eliminating explicit JOIN nodes from the jointree
299          * will cause get_relids_for_join() to fail.  But it should happen
300          * after reduce_outer_joins, anyway.
301          */
302         parse->jointree = (FromExpr *)
303                 simplify_jointree(parse, (Node *) parse->jointree);
304
305         /*
306          * Do the main planning.  If we have an inherited target relation,
307          * that needs special processing, else go straight to
308          * grouping_planner.
309          */
310         if (parse->resultRelation &&
311                 (lst = expand_inherited_rtentry(parse, parse->resultRelation,
312                                                                                 false)) != NIL)
313                 plan = inheritance_planner(parse, lst);
314         else
315                 plan = grouping_planner(parse, tuple_fraction);
316
317         /*
318          * If any subplans were generated, or if we're inside a subplan, build
319          * initPlan list and extParam/allParam sets for plan nodes.
320          */
321         if (PlannerPlanId != saved_planid || PlannerQueryLevel > 1)
322         {
323                 Cost            initplan_cost = 0;
324
325                 /* Prepare extParam/allParam sets for all nodes in tree */
326                 SS_finalize_plan(plan, parse->rtable);
327
328                 /*
329                  * SS_finalize_plan doesn't handle initPlans, so we have to
330                  * manually attach them to the topmost plan node, and add their
331                  * extParams to the topmost node's, too.
332                  *
333                  * We also add the total_cost of each initPlan to the startup cost of
334                  * the top node.  This is a conservative overestimate, since in
335                  * fact each initPlan might be executed later than plan startup,
336                  * or even not at all.
337                  */
338                 plan->initPlan = PlannerInitPlan;
339
340                 foreach(lst, plan->initPlan)
341                 {
342                         SubPlan    *initplan = (SubPlan *) lfirst(lst);
343
344                         plan->extParam = bms_add_members(plan->extParam,
345                                                                                          initplan->plan->extParam);
346                         initplan_cost += initplan->plan->total_cost;
347                 }
348
349                 plan->startup_cost += initplan_cost;
350                 plan->total_cost += initplan_cost;
351         }
352
353         /* Return to outer subquery context */
354         PlannerQueryLevel--;
355         PlannerInitPlan = saved_initplan;
356         /* we do NOT restore PlannerPlanId; that's not an oversight! */
357
358         return plan;
359 }
360
361 /*
362  * preprocess_expression
363  *              Do subquery_planner's preprocessing work for an expression,
364  *              which can be a targetlist, a WHERE clause (including JOIN/ON
365  *              conditions), or a HAVING clause.
366  */
367 static Node *
368 preprocess_expression(Query *parse, Node *expr, int kind)
369 {
370         /*
371          * If the query has any join RTEs, replace join alias variables with
372          * base-relation variables. We must do this before sublink processing,
373          * else sublinks expanded out from join aliases wouldn't get
374          * processed.
375          */
376         if (parse->hasJoinRTEs)
377                 expr = flatten_join_alias_vars(parse, expr);
378
379         /*
380          * If it's a qual or havingQual, canonicalize it.  It seems most useful
381          * to do this before applying eval_const_expressions, since the latter
382          * can optimize flattened AND/ORs better than unflattened ones.
383          *
384          * Note: all processing of a qual expression after this point must be
385          * careful to maintain AND/OR flatness --- that is, do not generate a
386          * tree with AND directly under AND, nor OR directly under OR.
387          */
388         if (kind == EXPRKIND_QUAL)
389         {
390                 expr = (Node *) canonicalize_qual((Expr *) expr);
391
392 #ifdef OPTIMIZER_DEBUG
393                 printf("After canonicalize_qual()\n");
394                 pprint(expr);
395 #endif
396         }
397
398         /*
399          * Simplify constant expressions.
400          */
401         expr = eval_const_expressions(expr);
402
403         /* Expand SubLinks to SubPlans */
404         if (parse->hasSubLinks)
405                 expr = SS_process_sublinks(expr, (kind == EXPRKIND_QUAL));
406
407         /*
408          * XXX do not insert anything here unless you have grokked the
409          * comments in SS_replace_correlation_vars ...
410          */
411
412         /* Replace uplevel vars with Param nodes */
413         if (PlannerQueryLevel > 1)
414                 expr = SS_replace_correlation_vars(expr);
415
416         /*
417          * If it's a qual or havingQual, convert it to implicit-AND format.
418          * (We don't want to do this before eval_const_expressions, since the
419          * latter would be unable to simplify a top-level AND correctly.  Also,
420          * SS_process_sublinks expects explicit-AND format.)
421          */
422         if (kind == EXPRKIND_QUAL)
423                 expr = (Node *) make_ands_implicit((Expr *) expr);
424
425         return expr;
426 }
427
428 /*
429  * preprocess_qual_conditions
430  *              Recursively scan the query's jointree and do subquery_planner's
431  *              preprocessing work on each qual condition found therein.
432  */
433 static void
434 preprocess_qual_conditions(Query *parse, Node *jtnode)
435 {
436         if (jtnode == NULL)
437                 return;
438         if (IsA(jtnode, RangeTblRef))
439         {
440                 /* nothing to do here */
441         }
442         else if (IsA(jtnode, FromExpr))
443         {
444                 FromExpr   *f = (FromExpr *) jtnode;
445                 List       *l;
446
447                 foreach(l, f->fromlist)
448                         preprocess_qual_conditions(parse, lfirst(l));
449
450                 f->quals = preprocess_expression(parse, f->quals, EXPRKIND_QUAL);
451         }
452         else if (IsA(jtnode, JoinExpr))
453         {
454                 JoinExpr   *j = (JoinExpr *) jtnode;
455
456                 preprocess_qual_conditions(parse, j->larg);
457                 preprocess_qual_conditions(parse, j->rarg);
458
459                 j->quals = preprocess_expression(parse, j->quals, EXPRKIND_QUAL);
460         }
461         else
462                 elog(ERROR, "unrecognized node type: %d",
463                          (int) nodeTag(jtnode));
464 }
465
466 /*--------------------
467  * inheritance_planner
468  *        Generate a plan in the case where the result relation is an
469  *        inheritance set.
470  *
471  * We have to handle this case differently from cases where a source
472  * relation is an inheritance set.      Source inheritance is expanded at
473  * the bottom of the plan tree (see allpaths.c), but target inheritance
474  * has to be expanded at the top.  The reason is that for UPDATE, each
475  * target relation needs a different targetlist matching its own column
476  * set.  (This is not so critical for DELETE, but for simplicity we treat
477  * inherited DELETE the same way.)      Fortunately, the UPDATE/DELETE target
478  * can never be the nullable side of an outer join, so it's OK to generate
479  * the plan this way.
480  *
481  * parse is the querytree produced by the parser & rewriter.
482  * inheritlist is an integer list of RT indexes for the result relation set.
483  *
484  * Returns a query plan.
485  *--------------------
486  */
487 static Plan *
488 inheritance_planner(Query *parse, List *inheritlist)
489 {
490         int                     parentRTindex = parse->resultRelation;
491         Oid                     parentOID = getrelid(parentRTindex, parse->rtable);
492         int                     mainrtlength = length(parse->rtable);
493         List       *subplans = NIL;
494         List       *tlist = NIL;
495         List       *l;
496
497         foreach(l, inheritlist)
498         {
499                 int                     childRTindex = lfirsti(l);
500                 Oid                     childOID = getrelid(childRTindex, parse->rtable);
501                 int                     subrtlength;
502                 Query      *subquery;
503                 Plan       *subplan;
504
505                 /* Generate modified query with this rel as target */
506                 subquery = (Query *) adjust_inherited_attrs((Node *) parse,
507                                                                                                 parentRTindex, parentOID,
508                                                                                                  childRTindex, childOID);
509                 /* Generate plan */
510                 subplan = grouping_planner(subquery, 0.0 /* retrieve all tuples */ );
511                 subplans = lappend(subplans, subplan);
512
513                 /*
514                  * It's possible that additional RTEs got added to the rangetable
515                  * due to expansion of inherited source tables (see allpaths.c).
516                  * If so, we must copy 'em back to the main parse tree's rtable.
517                  *
518                  * XXX my goodness this is ugly.  Really need to think about ways to
519                  * rein in planner's habit of scribbling on its input.
520                  */
521                 subrtlength = length(subquery->rtable);
522                 if (subrtlength > mainrtlength)
523                 {
524                         List       *subrt = subquery->rtable;
525
526                         while (mainrtlength-- > 0)      /* wish we had nthcdr() */
527                                 subrt = lnext(subrt);
528                         parse->rtable = nconc(parse->rtable, subrt);
529                         mainrtlength = subrtlength;
530                 }
531                 /* Save preprocessed tlist from first rel for use in Append */
532                 if (tlist == NIL)
533                         tlist = subplan->targetlist;
534         }
535
536         /* Save the target-relations list for the executor, too */
537         parse->resultRelations = inheritlist;
538
539         /* Mark result as unordered (probably unnecessary) */
540         parse->query_pathkeys = NIL;
541
542         return (Plan *) make_append(subplans, true, tlist);
543 }
544
545 /*--------------------
546  * grouping_planner
547  *        Perform planning steps related to grouping, aggregation, etc.
548  *        This primarily means adding top-level processing to the basic
549  *        query plan produced by query_planner.
550  *
551  * parse is the querytree produced by the parser & rewriter.
552  * tuple_fraction is the fraction of tuples we expect will be retrieved
553  *
554  * tuple_fraction is interpreted as follows:
555  *        0: expect all tuples to be retrieved (normal case)
556  *        0 < tuple_fraction < 1: expect the given fraction of tuples available
557  *              from the plan to be retrieved
558  *        tuple_fraction >= 1: tuple_fraction is the absolute number of tuples
559  *              expected to be retrieved (ie, a LIMIT specification)
560  *
561  * Returns a query plan.  Also, parse->query_pathkeys is returned as the
562  * actual output ordering of the plan (in pathkey format).
563  *--------------------
564  */
565 static Plan *
566 grouping_planner(Query *parse, double tuple_fraction)
567 {
568         List       *tlist = parse->targetList;
569         Plan       *result_plan;
570         List       *current_pathkeys;
571         List       *sort_pathkeys;
572
573         if (parse->setOperations)
574         {
575                 /*
576                  * Construct the plan for set operations.  The result will not
577                  * need any work except perhaps a top-level sort and/or LIMIT.
578                  */
579                 result_plan = plan_set_operations(parse);
580
581                 /*
582                  * We should not need to call preprocess_targetlist, since we must
583                  * be in a SELECT query node.  Instead, use the targetlist
584                  * returned by plan_set_operations (since this tells whether it
585                  * returned any resjunk columns!), and transfer any sort key
586                  * information from the original tlist.
587                  */
588                 Assert(parse->commandType == CMD_SELECT);
589
590                 tlist = postprocess_setop_tlist(result_plan->targetlist, tlist);
591
592                 /*
593                  * Can't handle FOR UPDATE here (parser should have checked
594                  * already, but let's make sure).
595                  */
596                 if (parse->rowMarks)
597                         ereport(ERROR,
598                                         (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
599                                          errmsg("SELECT FOR UPDATE is not allowed with UNION/INTERSECT/EXCEPT")));
600
601                 /*
602                  * We set current_pathkeys NIL indicating we do not know sort
603                  * order.  This is correct when the top set operation is UNION
604                  * ALL, since the appended-together results are unsorted even if
605                  * the subplans were sorted.  For other set operations we could be
606                  * smarter --- room for future improvement!
607                  */
608                 current_pathkeys = NIL;
609
610                 /*
611                  * Calculate pathkeys that represent ordering requirements
612                  */
613                 sort_pathkeys = make_pathkeys_for_sortclauses(parse->sortClause,
614                                                                                                           tlist);
615                 sort_pathkeys = canonicalize_pathkeys(parse, sort_pathkeys);
616         }
617         else
618         {
619                 /* No set operations, do regular planning */
620                 List       *sub_tlist;
621                 List       *group_pathkeys;
622                 AttrNumber *groupColIdx = NULL;
623                 bool            need_tlist_eval = true;
624                 QualCost        tlist_cost;
625                 double          sub_tuple_fraction;
626                 Path       *cheapest_path;
627                 Path       *sorted_path;
628                 double          dNumGroups = 0;
629                 long            numGroups = 0;
630                 int                     numAggs = 0;
631                 int                     numGroupCols = length(parse->groupClause);
632                 bool            use_hashed_grouping = false;
633
634                 /* Preprocess targetlist in case we are inside an INSERT/UPDATE. */
635                 tlist = preprocess_targetlist(tlist,
636                                                                           parse->commandType,
637                                                                           parse->resultRelation,
638                                                                           parse->rtable);
639
640                 /*
641                  * Add TID targets for rels selected FOR UPDATE (should this be
642                  * done in preprocess_targetlist?).  The executor uses the TID to
643                  * know which rows to lock, much as for UPDATE or DELETE.
644                  */
645                 if (parse->rowMarks)
646                 {
647                         List       *l;
648
649                         /*
650                          * We've got trouble if the FOR UPDATE appears inside
651                          * grouping, since grouping renders a reference to individual
652                          * tuple CTIDs invalid.  This is also checked at parse time,
653                          * but that's insufficient because of rule substitution, query
654                          * pullup, etc.
655                          */
656                         CheckSelectForUpdate(parse);
657
658                         /*
659                          * Currently the executor only supports FOR UPDATE at top
660                          * level
661                          */
662                         if (PlannerQueryLevel > 1)
663                                 ereport(ERROR,
664                                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
665                                                  errmsg("SELECT FOR UPDATE is not allowed in subqueries")));
666
667                         foreach(l, parse->rowMarks)
668                         {
669                                 Index           rti = lfirsti(l);
670                                 char       *resname;
671                                 Resdom     *resdom;
672                                 Var                *var;
673                                 TargetEntry *ctid;
674
675                                 resname = (char *) palloc(32);
676                                 snprintf(resname, 32, "ctid%u", rti);
677                                 resdom = makeResdom(length(tlist) + 1,
678                                                                         TIDOID,
679                                                                         -1,
680                                                                         resname,
681                                                                         true);
682
683                                 var = makeVar(rti,
684                                                           SelfItemPointerAttributeNumber,
685                                                           TIDOID,
686                                                           -1,
687                                                           0);
688
689                                 ctid = makeTargetEntry(resdom, (Expr *) var);
690                                 tlist = lappend(tlist, ctid);
691                         }
692                 }
693
694                 /*
695                  * Generate appropriate target list for subplan; may be different
696                  * from tlist if grouping or aggregation is needed.
697                  */
698                 sub_tlist = make_subplanTargetList(parse, tlist,
699                                                                                  &groupColIdx, &need_tlist_eval);
700
701                 /*
702                  * Calculate pathkeys that represent grouping/ordering
703                  * requirements
704                  */
705                 group_pathkeys = make_pathkeys_for_sortclauses(parse->groupClause,
706                                                                                                            tlist);
707                 sort_pathkeys = make_pathkeys_for_sortclauses(parse->sortClause,
708                                                                                                           tlist);
709
710                 /*
711                  * Will need actual number of aggregates for estimating costs.
712                  *
713                  * Note: we do not attempt to detect duplicate aggregates here; a
714                  * somewhat-overestimated count is okay for our present purposes.
715                  *
716                  * Note: think not that we can turn off hasAggs if we find no aggs.
717                  * It is possible for constant-expression simplification to remove
718                  * all explicit references to aggs, but we still have to follow the
719                  * aggregate semantics (eg, producing only one output row).
720                  */
721                 if (parse->hasAggs)
722                         numAggs = count_agg_clause((Node *) tlist) +
723                                 count_agg_clause(parse->havingQual);
724
725                 /*
726                  * Figure out whether we need a sorted result from query_planner.
727                  *
728                  * If we have a GROUP BY clause, then we want a result sorted
729                  * properly for grouping.  Otherwise, if there is an ORDER BY
730                  * clause, we want to sort by the ORDER BY clause.      (Note: if we
731                  * have both, and ORDER BY is a superset of GROUP BY, it would be
732                  * tempting to request sort by ORDER BY --- but that might just
733                  * leave us failing to exploit an available sort order at all.
734                  * Needs more thought...)
735                  */
736                 if (parse->groupClause)
737                         parse->query_pathkeys = group_pathkeys;
738                 else if (parse->sortClause)
739                         parse->query_pathkeys = sort_pathkeys;
740                 else
741                         parse->query_pathkeys = NIL;
742
743                 /*
744                  * Adjust tuple_fraction if we see that we are going to apply
745                  * limiting/grouping/aggregation/etc.  This is not overridable by
746                  * the caller, since it reflects plan actions that this routine
747                  * will certainly take, not assumptions about context.
748                  */
749                 if (parse->limitCount != NULL)
750                 {
751                         /*
752                          * A LIMIT clause limits the absolute number of tuples
753                          * returned. However, if it's not a constant LIMIT then we
754                          * have to punt; for lack of a better idea, assume 10% of the
755                          * plan's result is wanted.
756                          */
757                         double          limit_fraction = 0.0;
758
759                         if (IsA(parse->limitCount, Const))
760                         {
761                                 Const      *limitc = (Const *) parse->limitCount;
762                                 int32           count = DatumGetInt32(limitc->constvalue);
763
764                                 /*
765                                  * A NULL-constant LIMIT represents "LIMIT ALL", which we
766                                  * treat the same as no limit (ie, expect to retrieve all
767                                  * the tuples).
768                                  */
769                                 if (!limitc->constisnull && count > 0)
770                                 {
771                                         limit_fraction = (double) count;
772                                         /* We must also consider the OFFSET, if present */
773                                         if (parse->limitOffset != NULL)
774                                         {
775                                                 if (IsA(parse->limitOffset, Const))
776                                                 {
777                                                         int32           offset;
778
779                                                         limitc = (Const *) parse->limitOffset;
780                                                         offset = DatumGetInt32(limitc->constvalue);
781                                                         if (!limitc->constisnull && offset > 0)
782                                                                 limit_fraction += (double) offset;
783                                                 }
784                                                 else
785                                                 {
786                                                         /* OFFSET is an expression ... punt ... */
787                                                         limit_fraction = 0.10;
788                                                 }
789                                         }
790                                 }
791                         }
792                         else
793                         {
794                                 /* LIMIT is an expression ... punt ... */
795                                 limit_fraction = 0.10;
796                         }
797
798                         if (limit_fraction > 0.0)
799                         {
800                                 /*
801                                  * If we have absolute limits from both caller and LIMIT,
802                                  * use the smaller value; if one is fractional and the
803                                  * other absolute, treat the fraction as a fraction of the
804                                  * absolute value; else we can multiply the two fractions
805                                  * together.
806                                  */
807                                 if (tuple_fraction >= 1.0)
808                                 {
809                                         if (limit_fraction >= 1.0)
810                                         {
811                                                 /* both absolute */
812                                                 tuple_fraction = Min(tuple_fraction, limit_fraction);
813                                         }
814                                         else
815                                         {
816                                                 /* caller absolute, limit fractional */
817                                                 tuple_fraction *= limit_fraction;
818                                                 if (tuple_fraction < 1.0)
819                                                         tuple_fraction = 1.0;
820                                         }
821                                 }
822                                 else if (tuple_fraction > 0.0)
823                                 {
824                                         if (limit_fraction >= 1.0)
825                                         {
826                                                 /* caller fractional, limit absolute */
827                                                 tuple_fraction *= limit_fraction;
828                                                 if (tuple_fraction < 1.0)
829                                                         tuple_fraction = 1.0;
830                                         }
831                                         else
832                                         {
833                                                 /* both fractional */
834                                                 tuple_fraction *= limit_fraction;
835                                         }
836                                 }
837                                 else
838                                 {
839                                         /* no info from caller, just use limit */
840                                         tuple_fraction = limit_fraction;
841                                 }
842                         }
843                 }
844
845                 /*
846                  * With grouping or aggregation, the tuple fraction to pass to
847                  * query_planner() may be different from what it is at top level.
848                  */
849                 sub_tuple_fraction = tuple_fraction;
850
851                 if (parse->groupClause)
852                 {
853                         /*
854                          * In GROUP BY mode, we have the little problem that we don't
855                          * really know how many input tuples will be needed to make a
856                          * group, so we can't translate an output LIMIT count into an
857                          * input count.  For lack of a better idea, assume 25% of the
858                          * input data will be processed if there is any output limit.
859                          * However, if the caller gave us a fraction rather than an
860                          * absolute count, we can keep using that fraction (which
861                          * amounts to assuming that all the groups are about the same
862                          * size).
863                          */
864                         if (sub_tuple_fraction >= 1.0)
865                                 sub_tuple_fraction = 0.25;
866
867                         /*
868                          * If both GROUP BY and ORDER BY are specified, we will need
869                          * two levels of sort --- and, therefore, certainly need to
870                          * read all the input tuples --- unless ORDER BY is a subset
871                          * of GROUP BY.  (We have not yet canonicalized the pathkeys,
872                          * so must use the slower noncanonical comparison method.)
873                          */
874                         if (parse->groupClause && parse->sortClause &&
875                                 !noncanonical_pathkeys_contained_in(sort_pathkeys,
876                                                                                                         group_pathkeys))
877                                 sub_tuple_fraction = 0.0;
878                 }
879                 else if (parse->hasAggs)
880                 {
881                         /*
882                          * Ungrouped aggregate will certainly want all the input
883                          * tuples.
884                          */
885                         sub_tuple_fraction = 0.0;
886                 }
887                 else if (parse->distinctClause)
888                 {
889                         /*
890                          * SELECT DISTINCT, like GROUP, will absorb an unpredictable
891                          * number of input tuples per output tuple.  Handle the same
892                          * way.
893                          */
894                         if (sub_tuple_fraction >= 1.0)
895                                 sub_tuple_fraction = 0.25;
896                 }
897
898                 /*
899                  * Generate the best unsorted and presorted paths for this Query
900                  * (but note there may not be any presorted path).
901                  */
902                 query_planner(parse, sub_tlist, sub_tuple_fraction,
903                                           &cheapest_path, &sorted_path);
904
905                 /*
906                  * We couldn't canonicalize group_pathkeys and sort_pathkeys
907                  * before running query_planner(), so do it now.
908                  */
909                 group_pathkeys = canonicalize_pathkeys(parse, group_pathkeys);
910                 sort_pathkeys = canonicalize_pathkeys(parse, sort_pathkeys);
911
912                 /*
913                  * Consider whether we might want to use hashed grouping.
914                  */
915                 if (parse->groupClause)
916                 {
917                         List       *groupExprs;
918                         double          cheapest_path_rows;
919                         int                     cheapest_path_width;
920
921                         /*
922                          * Beware in this section of the possibility that
923                          * cheapest_path->parent is NULL.  This could happen if user
924                          * does something silly like SELECT 'foo' GROUP BY 1;
925                          */
926                         if (cheapest_path->parent)
927                         {
928                                 cheapest_path_rows = cheapest_path->parent->rows;
929                                 cheapest_path_width = cheapest_path->parent->width;
930                         }
931                         else
932                         {
933                                 cheapest_path_rows = 1; /* assume non-set result */
934                                 cheapest_path_width = 100;              /* arbitrary */
935                         }
936
937                         /*
938                          * Always estimate the number of groups.  We can't do this
939                          * until after running query_planner(), either.
940                          */
941                         groupExprs = get_sortgrouplist_exprs(parse->groupClause,
942                                                                                                  parse->targetList);
943                         dNumGroups = estimate_num_groups(parse,
944                                                                                          groupExprs,
945                                                                                          cheapest_path_rows);
946                         /* Also want it as a long int --- but 'ware overflow! */
947                         numGroups = (long) Min(dNumGroups, (double) LONG_MAX);
948
949                         /*
950                          * Check can't-do-it conditions, including whether the
951                          * grouping operators are hashjoinable.
952                          *
953                          * Executor doesn't support hashed aggregation with DISTINCT
954                          * aggregates.  (Doing so would imply storing *all* the input
955                          * values in the hash table, which seems like a certain
956                          * loser.)
957                          */
958                         if (!enable_hashagg || !hash_safe_grouping(parse))
959                                 use_hashed_grouping = false;
960                         else if (parse->hasAggs &&
961                                          (contain_distinct_agg_clause((Node *) tlist) ||
962                                           contain_distinct_agg_clause(parse->havingQual)))
963                                 use_hashed_grouping = false;
964                         else
965                         {
966                                 /*
967                                  * Use hashed grouping if (a) we think we can fit the
968                                  * hashtable into work_mem, *and* (b) the estimated cost is
969                                  * no more than doing it the other way.  While avoiding
970                                  * the need for sorted input is usually a win, the fact
971                                  * that the output won't be sorted may be a loss; so we
972                                  * need to do an actual cost comparison.
973                                  *
974                                  * In most cases we have no good way to estimate the size of
975                                  * the transition value needed by an aggregate;
976                                  * arbitrarily assume it is 100 bytes.  Also set the
977                                  * overhead per hashtable entry at 64 bytes.
978                                  */
979                                 int                     hashentrysize = cheapest_path_width + 64 + numAggs * 100;
980
981                                 if (hashentrysize * dNumGroups <= work_mem * 1024L)
982                                 {
983                                         /*
984                                          * Okay, do the cost comparison.  We need to consider
985                                          * cheapest_path + hashagg [+ final sort] versus
986                                          * either cheapest_path [+ sort] + group or agg [+
987                                          * final sort] or presorted_path + group or agg [+
988                                          * final sort] where brackets indicate a step that may
989                                          * not be needed. We assume query_planner() will have
990                                          * returned a presorted path only if it's a winner
991                                          * compared to cheapest_path for this purpose.
992                                          *
993                                          * These path variables are dummies that just hold cost
994                                          * fields; we don't make actual Paths for these steps.
995                                          */
996                                         Path            hashed_p;
997                                         Path            sorted_p;
998
999                                         cost_agg(&hashed_p, parse,
1000                                                          AGG_HASHED, numAggs,
1001                                                          numGroupCols, dNumGroups,
1002                                                          cheapest_path->startup_cost,
1003                                                          cheapest_path->total_cost,
1004                                                          cheapest_path_rows);
1005                                         /* Result of hashed agg is always unsorted */
1006                                         if (sort_pathkeys)
1007                                                 cost_sort(&hashed_p, parse, sort_pathkeys,
1008                                                                   hashed_p.total_cost,
1009                                                                   dNumGroups,
1010                                                                   cheapest_path_width);
1011
1012                                         if (sorted_path)
1013                                         {
1014                                                 sorted_p.startup_cost = sorted_path->startup_cost;
1015                                                 sorted_p.total_cost = sorted_path->total_cost;
1016                                                 current_pathkeys = sorted_path->pathkeys;
1017                                         }
1018                                         else
1019                                         {
1020                                                 sorted_p.startup_cost = cheapest_path->startup_cost;
1021                                                 sorted_p.total_cost = cheapest_path->total_cost;
1022                                                 current_pathkeys = cheapest_path->pathkeys;
1023                                         }
1024                                         if (!pathkeys_contained_in(group_pathkeys,
1025                                                                                            current_pathkeys))
1026                                         {
1027                                                 cost_sort(&sorted_p, parse, group_pathkeys,
1028                                                                   sorted_p.total_cost,
1029                                                                   cheapest_path_rows,
1030                                                                   cheapest_path_width);
1031                                                 current_pathkeys = group_pathkeys;
1032                                         }
1033                                         if (parse->hasAggs)
1034                                                 cost_agg(&sorted_p, parse,
1035                                                                  AGG_SORTED, numAggs,
1036                                                                  numGroupCols, dNumGroups,
1037                                                                  sorted_p.startup_cost,
1038                                                                  sorted_p.total_cost,
1039                                                                  cheapest_path_rows);
1040                                         else
1041                                                 cost_group(&sorted_p, parse,
1042                                                                    numGroupCols, dNumGroups,
1043                                                                    sorted_p.startup_cost,
1044                                                                    sorted_p.total_cost,
1045                                                                    cheapest_path_rows);
1046                                         /* The Agg or Group node will preserve ordering */
1047                                         if (sort_pathkeys &&
1048                                                 !pathkeys_contained_in(sort_pathkeys,
1049                                                                                            current_pathkeys))
1050                                         {
1051                                                 cost_sort(&sorted_p, parse, sort_pathkeys,
1052                                                                   sorted_p.total_cost,
1053                                                                   dNumGroups,
1054                                                                   cheapest_path_width);
1055                                         }
1056
1057                                         /*
1058                                          * Now make the decision using the top-level tuple
1059                                          * fraction.  First we have to convert an absolute
1060                                          * count (LIMIT) into fractional form.
1061                                          */
1062                                         if (tuple_fraction >= 1.0)
1063                                                 tuple_fraction /= dNumGroups;
1064
1065                                         if (compare_fractional_path_costs(&hashed_p, &sorted_p,
1066                                                                                                           tuple_fraction) < 0)
1067                                         {
1068                                                 /* Hashed is cheaper, so use it */
1069                                                 use_hashed_grouping = true;
1070                                         }
1071                                 }
1072                         }
1073                 }
1074
1075                 /*
1076                  * Select the best path and create a plan to execute it.
1077                  *
1078                  * If we are doing hashed grouping, we will always read all the input
1079                  * tuples, so use the cheapest-total path.      Otherwise, trust
1080                  * query_planner's decision about which to use.
1081                  */
1082                 if (sorted_path && !use_hashed_grouping)
1083                 {
1084                         result_plan = create_plan(parse, sorted_path);
1085                         current_pathkeys = sorted_path->pathkeys;
1086                 }
1087                 else
1088                 {
1089                         result_plan = create_plan(parse, cheapest_path);
1090                         current_pathkeys = cheapest_path->pathkeys;
1091                 }
1092
1093                 /*
1094                  * create_plan() returns a plan with just a "flat" tlist of
1095                  * required Vars.  Usually we need to insert the sub_tlist as the
1096                  * tlist of the top plan node.  However, we can skip that if we
1097                  * determined that whatever query_planner chose to return will be
1098                  * good enough.
1099                  */
1100                 if (need_tlist_eval)
1101                 {
1102                         /*
1103                          * If the top-level plan node is one that cannot do expression
1104                          * evaluation, we must insert a Result node to project the
1105                          * desired tlist.
1106                          */
1107                         if (!is_projection_capable_plan(result_plan))
1108                         {
1109                                 result_plan = (Plan *) make_result(sub_tlist, NULL,
1110                                                                                                    result_plan);
1111                         }
1112                         else
1113                         {
1114                                 /*
1115                                  * Otherwise, just replace the subplan's flat tlist with
1116                                  * the desired tlist.
1117                                  */
1118                                 result_plan->targetlist = sub_tlist;
1119                         }
1120
1121                         /*
1122                          * Also, account for the cost of evaluation of the sub_tlist.
1123                          *
1124                          * Up to now, we have only been dealing with "flat" tlists,
1125                          * containing just Vars.  So their evaluation cost is zero
1126                          * according to the model used by cost_qual_eval() (or if you
1127                          * prefer, the cost is factored into cpu_tuple_cost).  Thus we
1128                          * can avoid accounting for tlist cost throughout
1129                          * query_planner() and subroutines.  But now we've inserted a
1130                          * tlist that might contain actual operators, sub-selects, etc
1131                          * --- so we'd better account for its cost.
1132                          *
1133                          * Below this point, any tlist eval cost for added-on nodes
1134                          * should be accounted for as we create those nodes.
1135                          * Presently, of the node types we can add on, only Agg and
1136                          * Group project new tlists (the rest just copy their input
1137                          * tuples) --- so make_agg() and make_group() are responsible
1138                          * for computing the added cost.
1139                          */
1140                         cost_qual_eval(&tlist_cost, sub_tlist);
1141                         result_plan->startup_cost += tlist_cost.startup;
1142                         result_plan->total_cost += tlist_cost.startup +
1143                                 tlist_cost.per_tuple * result_plan->plan_rows;
1144                 }
1145                 else
1146                 {
1147                         /*
1148                          * Since we're using query_planner's tlist and not the one
1149                          * make_subplanTargetList calculated, we have to refigure any
1150                          * grouping-column indexes make_subplanTargetList computed.
1151                          */
1152                         locate_grouping_columns(parse, tlist, result_plan->targetlist,
1153                                                                         groupColIdx);
1154                 }
1155
1156                 /*
1157                  * Insert AGG or GROUP node if needed, plus an explicit sort step
1158                  * if necessary.
1159                  *
1160                  * HAVING clause, if any, becomes qual of the Agg node
1161                  */
1162                 if (use_hashed_grouping)
1163                 {
1164                         /* Hashed aggregate plan --- no sort needed */
1165                         result_plan = (Plan *) make_agg(parse,
1166                                                                                         tlist,
1167                                                                                         (List *) parse->havingQual,
1168                                                                                         AGG_HASHED,
1169                                                                                         numGroupCols,
1170                                                                                         groupColIdx,
1171                                                                                         numGroups,
1172                                                                                         numAggs,
1173                                                                                         result_plan);
1174                         /* Hashed aggregation produces randomly-ordered results */
1175                         current_pathkeys = NIL;
1176                 }
1177                 else if (parse->hasAggs)
1178                 {
1179                         /* Plain aggregate plan --- sort if needed */
1180                         AggStrategy aggstrategy;
1181
1182                         if (parse->groupClause)
1183                         {
1184                                 if (!pathkeys_contained_in(group_pathkeys, current_pathkeys))
1185                                 {
1186                                         result_plan = (Plan *)
1187                                                 make_sort_from_groupcols(parse,
1188                                                                                                  parse->groupClause,
1189                                                                                                  groupColIdx,
1190                                                                                                  result_plan);
1191                                         current_pathkeys = group_pathkeys;
1192                                 }
1193                                 aggstrategy = AGG_SORTED;
1194
1195                                 /*
1196                                  * The AGG node will not change the sort ordering of its
1197                                  * groups, so current_pathkeys describes the result too.
1198                                  */
1199                         }
1200                         else
1201                         {
1202                                 aggstrategy = AGG_PLAIN;
1203                                 /* Result will be only one row anyway; no sort order */
1204                                 current_pathkeys = NIL;
1205                         }
1206
1207                         result_plan = (Plan *) make_agg(parse,
1208                                                                                         tlist,
1209                                                                                         (List *) parse->havingQual,
1210                                                                                         aggstrategy,
1211                                                                                         numGroupCols,
1212                                                                                         groupColIdx,
1213                                                                                         numGroups,
1214                                                                                         numAggs,
1215                                                                                         result_plan);
1216                 }
1217                 else
1218                 {
1219                         /*
1220                          * If there are no Aggs, we shouldn't have any HAVING qual
1221                          * anymore
1222                          */
1223                         Assert(parse->havingQual == NULL);
1224
1225                         /*
1226                          * If we have a GROUP BY clause, insert a group node (plus the
1227                          * appropriate sort node, if necessary).
1228                          */
1229                         if (parse->groupClause)
1230                         {
1231                                 /*
1232                                  * Add an explicit sort if we couldn't make the path come
1233                                  * out the way the GROUP node needs it.
1234                                  */
1235                                 if (!pathkeys_contained_in(group_pathkeys, current_pathkeys))
1236                                 {
1237                                         result_plan = (Plan *)
1238                                                 make_sort_from_groupcols(parse,
1239                                                                                                  parse->groupClause,
1240                                                                                                  groupColIdx,
1241                                                                                                  result_plan);
1242                                         current_pathkeys = group_pathkeys;
1243                                 }
1244
1245                                 result_plan = (Plan *) make_group(parse,
1246                                                                                                   tlist,
1247                                                                                                   numGroupCols,
1248                                                                                                   groupColIdx,
1249                                                                                                   dNumGroups,
1250                                                                                                   result_plan);
1251                                 /* The Group node won't change sort ordering */
1252                         }
1253                 }
1254         }                                                       /* end of if (setOperations) */
1255
1256         /*
1257          * If we were not able to make the plan come out in the right order,
1258          * add an explicit sort step.
1259          */
1260         if (parse->sortClause)
1261         {
1262                 if (!pathkeys_contained_in(sort_pathkeys, current_pathkeys))
1263                 {
1264                         result_plan = (Plan *)
1265                                 make_sort_from_sortclauses(parse,
1266                                                                                    parse->sortClause,
1267                                                                                    result_plan);
1268                         current_pathkeys = sort_pathkeys;
1269                 }
1270         }
1271
1272         /*
1273          * If there is a DISTINCT clause, add the UNIQUE node.
1274          */
1275         if (parse->distinctClause)
1276         {
1277                 result_plan = (Plan *) make_unique(result_plan, parse->distinctClause);
1278
1279                 /*
1280                  * If there was grouping or aggregation, leave plan_rows as-is
1281                  * (ie, assume the result was already mostly unique).  If not,
1282                  * it's reasonable to assume the UNIQUE filter has effects
1283                  * comparable to GROUP BY.
1284                  */
1285                 if (!parse->groupClause && !parse->hasAggs)
1286                 {
1287                         List       *distinctExprs;
1288
1289                         distinctExprs = get_sortgrouplist_exprs(parse->distinctClause,
1290                                                                                                         parse->targetList);
1291                         result_plan->plan_rows = estimate_num_groups(parse,
1292                                                                                                                  distinctExprs,
1293                                                                                                  result_plan->plan_rows);
1294                 }
1295         }
1296
1297         /*
1298          * Finally, if there is a LIMIT/OFFSET clause, add the LIMIT node.
1299          */
1300         if (parse->limitOffset || parse->limitCount)
1301         {
1302                 result_plan = (Plan *) make_limit(result_plan,
1303                                                                                   parse->limitOffset,
1304                                                                                   parse->limitCount);
1305         }
1306
1307         /*
1308          * Return the actual output ordering in query_pathkeys for possible
1309          * use by an outer query level.
1310          */
1311         parse->query_pathkeys = current_pathkeys;
1312
1313         return result_plan;
1314 }
1315
1316 /*
1317  * hash_safe_grouping - are grouping operators hashable?
1318  *
1319  * We assume hashed aggregation will work if the datatype's equality operator
1320  * is marked hashjoinable.
1321  */
1322 static bool
1323 hash_safe_grouping(Query *parse)
1324 {
1325         List       *gl;
1326
1327         foreach(gl, parse->groupClause)
1328         {
1329                 GroupClause *grpcl = (GroupClause *) lfirst(gl);
1330                 TargetEntry *tle = get_sortgroupclause_tle(grpcl, parse->targetList);
1331                 Operator        optup;
1332                 bool            oprcanhash;
1333
1334                 optup = equality_oper(tle->resdom->restype, true);
1335                 if (!optup)
1336                         return false;
1337                 oprcanhash = ((Form_pg_operator) GETSTRUCT(optup))->oprcanhash;
1338                 ReleaseSysCache(optup);
1339                 if (!oprcanhash)
1340                         return false;
1341         }
1342         return true;
1343 }
1344
1345 /*---------------
1346  * make_subplanTargetList
1347  *        Generate appropriate target list when grouping is required.
1348  *
1349  * When grouping_planner inserts Aggregate or Group plan nodes above
1350  * the result of query_planner, we typically want to pass a different
1351  * target list to query_planner than the outer plan nodes should have.
1352  * This routine generates the correct target list for the subplan.
1353  *
1354  * The initial target list passed from the parser already contains entries
1355  * for all ORDER BY and GROUP BY expressions, but it will not have entries
1356  * for variables used only in HAVING clauses; so we need to add those
1357  * variables to the subplan target list.  Also, if we are doing either
1358  * grouping or aggregation, we flatten all expressions except GROUP BY items
1359  * into their component variables; the other expressions will be computed by
1360  * the inserted nodes rather than by the subplan.  For example,
1361  * given a query like
1362  *              SELECT a+b,SUM(c+d) FROM table GROUP BY a+b;
1363  * we want to pass this targetlist to the subplan:
1364  *              a,b,c,d,a+b
1365  * where the a+b target will be used by the Sort/Group steps, and the
1366  * other targets will be used for computing the final results.  (In the
1367  * above example we could theoretically suppress the a and b targets and
1368  * pass down only c,d,a+b, but it's not really worth the trouble to
1369  * eliminate simple var references from the subplan.  We will avoid doing
1370  * the extra computation to recompute a+b at the outer level; see
1371  * replace_vars_with_subplan_refs() in setrefs.c.)
1372  *
1373  * If we are grouping or aggregating, *and* there are no non-Var grouping
1374  * expressions, then the returned tlist is effectively dummy; we do not
1375  * need to force it to be evaluated, because all the Vars it contains
1376  * should be present in the output of query_planner anyway.
1377  *
1378  * 'parse' is the query being processed.
1379  * 'tlist' is the query's target list.
1380  * 'groupColIdx' receives an array of column numbers for the GROUP BY
1381  *                      expressions (if there are any) in the subplan's target list.
1382  * 'need_tlist_eval' is set true if we really need to evaluate the
1383  *                      result tlist.
1384  *
1385  * The result is the targetlist to be passed to the subplan.
1386  *---------------
1387  */
1388 static List *
1389 make_subplanTargetList(Query *parse,
1390                                            List *tlist,
1391                                            AttrNumber **groupColIdx,
1392                                            bool *need_tlist_eval)
1393 {
1394         List       *sub_tlist;
1395         List       *extravars;
1396         int                     numCols;
1397
1398         *groupColIdx = NULL;
1399
1400         /*
1401          * If we're not grouping or aggregating, nothing to do here;
1402          * query_planner should receive the unmodified target list.
1403          */
1404         if (!parse->hasAggs && !parse->groupClause)
1405         {
1406                 *need_tlist_eval = true;
1407                 return tlist;
1408         }
1409
1410         /*
1411          * Otherwise, start with a "flattened" tlist (having just the vars
1412          * mentioned in the targetlist and HAVING qual --- but not upper-
1413          * level Vars; they will be replaced by Params later on).
1414          */
1415         sub_tlist = flatten_tlist(tlist);
1416         extravars = pull_var_clause(parse->havingQual, false);
1417         sub_tlist = add_to_flat_tlist(sub_tlist, extravars);
1418         freeList(extravars);
1419         *need_tlist_eval = false;       /* only eval if not flat tlist */
1420
1421         /*
1422          * If grouping, create sub_tlist entries for all GROUP BY expressions
1423          * (GROUP BY items that are simple Vars should be in the list
1424          * already), and make an array showing where the group columns are in
1425          * the sub_tlist.
1426          */
1427         numCols = length(parse->groupClause);
1428         if (numCols > 0)
1429         {
1430                 int                     keyno = 0;
1431                 AttrNumber *grpColIdx;
1432                 List       *gl;
1433
1434                 grpColIdx = (AttrNumber *) palloc(sizeof(AttrNumber) * numCols);
1435                 *groupColIdx = grpColIdx;
1436
1437                 foreach(gl, parse->groupClause)
1438                 {
1439                         GroupClause *grpcl = (GroupClause *) lfirst(gl);
1440                         Node       *groupexpr = get_sortgroupclause_expr(grpcl, tlist);
1441                         TargetEntry *te = NULL;
1442                         List       *sl;
1443
1444                         /* Find or make a matching sub_tlist entry */
1445                         foreach(sl, sub_tlist)
1446                         {
1447                                 te = (TargetEntry *) lfirst(sl);
1448                                 if (equal(groupexpr, te->expr))
1449                                         break;
1450                         }
1451                         if (!sl)
1452                         {
1453                                 te = makeTargetEntry(makeResdom(length(sub_tlist) + 1,
1454                                                                                                 exprType(groupexpr),
1455                                                                                                 exprTypmod(groupexpr),
1456                                                                                                 NULL,
1457                                                                                                 false),
1458                                                                          (Expr *) groupexpr);
1459                                 sub_tlist = lappend(sub_tlist, te);
1460                                 *need_tlist_eval = true;                /* it's not flat anymore */
1461                         }
1462
1463                         /* and save its resno */
1464                         grpColIdx[keyno++] = te->resdom->resno;
1465                 }
1466         }
1467
1468         return sub_tlist;
1469 }
1470
1471 /*
1472  * locate_grouping_columns
1473  *              Locate grouping columns in the tlist chosen by query_planner.
1474  *
1475  * This is only needed if we don't use the sub_tlist chosen by
1476  * make_subplanTargetList.      We have to forget the column indexes found
1477  * by that routine and re-locate the grouping vars in the real sub_tlist.
1478  */
1479 static void
1480 locate_grouping_columns(Query *parse,
1481                                                 List *tlist,
1482                                                 List *sub_tlist,
1483                                                 AttrNumber *groupColIdx)
1484 {
1485         int                     keyno = 0;
1486         List       *gl;
1487
1488         /*
1489          * No work unless grouping.
1490          */
1491         if (!parse->groupClause)
1492         {
1493                 Assert(groupColIdx == NULL);
1494                 return;
1495         }
1496         Assert(groupColIdx != NULL);
1497
1498         foreach(gl, parse->groupClause)
1499         {
1500                 GroupClause *grpcl = (GroupClause *) lfirst(gl);
1501                 Node       *groupexpr = get_sortgroupclause_expr(grpcl, tlist);
1502                 TargetEntry *te = NULL;
1503                 List       *sl;
1504
1505                 foreach(sl, sub_tlist)
1506                 {
1507                         te = (TargetEntry *) lfirst(sl);
1508                         if (equal(groupexpr, te->expr))
1509                                 break;
1510                 }
1511                 if (!sl)
1512                         elog(ERROR, "failed to locate grouping columns");
1513
1514                 groupColIdx[keyno++] = te->resdom->resno;
1515         }
1516 }
1517
1518 /*
1519  * postprocess_setop_tlist
1520  *        Fix up targetlist returned by plan_set_operations().
1521  *
1522  * We need to transpose sort key info from the orig_tlist into new_tlist.
1523  * NOTE: this would not be good enough if we supported resjunk sort keys
1524  * for results of set operations --- then, we'd need to project a whole
1525  * new tlist to evaluate the resjunk columns.  For now, just ereport if we
1526  * find any resjunk columns in orig_tlist.
1527  */
1528 static List *
1529 postprocess_setop_tlist(List *new_tlist, List *orig_tlist)
1530 {
1531         List       *l;
1532
1533         foreach(l, new_tlist)
1534         {
1535                 TargetEntry *new_tle = (TargetEntry *) lfirst(l);
1536                 TargetEntry *orig_tle;
1537
1538                 /* ignore resjunk columns in setop result */
1539                 if (new_tle->resdom->resjunk)
1540                         continue;
1541
1542                 Assert(orig_tlist != NIL);
1543                 orig_tle = (TargetEntry *) lfirst(orig_tlist);
1544                 orig_tlist = lnext(orig_tlist);
1545                 if (orig_tle->resdom->resjunk)  /* should not happen */
1546                         elog(ERROR, "resjunk output columns are not implemented");
1547                 Assert(new_tle->resdom->resno == orig_tle->resdom->resno);
1548                 Assert(new_tle->resdom->restype == orig_tle->resdom->restype);
1549                 new_tle->resdom->ressortgroupref = orig_tle->resdom->ressortgroupref;
1550         }
1551         if (orig_tlist != NIL)
1552                 elog(ERROR, "resjunk output columns are not implemented");
1553         return new_tlist;
1554 }