]> granicus.if.org Git - postgresql/blob - src/backend/executor/execMain.c
Arrange to copy relcache's trigdesc structure at the start of any
[postgresql] / src / backend / executor / execMain.c
1 /*-------------------------------------------------------------------------
2  *
3  * execMain.c
4  *        top level executor interface routines
5  *
6  * INTERFACE ROUTINES
7  *      ExecutorStart()
8  *      ExecutorRun()
9  *      ExecutorEnd()
10  *
11  *      The old ExecutorMain() has been replaced by ExecutorStart(),
12  *      ExecutorRun() and ExecutorEnd()
13  *
14  *      These three procedures are the external interfaces to the executor.
15  *      In each case, the query descriptor and the execution state is required
16  *       as arguments
17  *
18  *      ExecutorStart() must be called at the beginning of any execution of any
19  *      query plan and ExecutorEnd() should always be called at the end of
20  *      execution of a plan.
21  *
22  *      ExecutorRun accepts direction and count arguments that specify whether
23  *      the plan is to be executed forwards, backwards, and for how many tuples.
24  *
25  * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
26  * Portions Copyright (c) 1994, Regents of the University of California
27  *
28  *
29  * IDENTIFICATION
30  *        $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.180 2002/10/14 16:51:30 tgl Exp $
31  *
32  *-------------------------------------------------------------------------
33  */
34 #include "postgres.h"
35
36 #include "access/heapam.h"
37 #include "catalog/heap.h"
38 #include "catalog/namespace.h"
39 #include "commands/tablecmds.h"
40 #include "commands/trigger.h"
41 #include "executor/execdebug.h"
42 #include "executor/execdefs.h"
43 #include "miscadmin.h"
44 #include "optimizer/var.h"
45 #include "parser/parsetree.h"
46 #include "utils/acl.h"
47 #include "utils/lsyscache.h"
48
49
50 /* decls for local routines only used within this module */
51 static TupleDesc InitPlan(CmdType operation,
52                  Query *parseTree,
53                  Plan *plan,
54                  EState *estate);
55 static void initResultRelInfo(ResultRelInfo *resultRelInfo,
56                                   Index resultRelationIndex,
57                                   List *rangeTable,
58                                   CmdType operation);
59 static void EndPlan(Plan *plan, EState *estate);
60 static TupleTableSlot *ExecutePlan(EState *estate, Plan *plan,
61                         CmdType operation,
62                         long numberTuples,
63                         ScanDirection direction,
64                         DestReceiver *destfunc);
65 static void ExecSelect(TupleTableSlot *slot,
66                    DestReceiver *destfunc,
67                    EState *estate);
68 static void ExecInsert(TupleTableSlot *slot, ItemPointer tupleid,
69                    EState *estate);
70 static void ExecDelete(TupleTableSlot *slot, ItemPointer tupleid,
71                    EState *estate);
72 static void ExecUpdate(TupleTableSlot *slot, ItemPointer tupleid,
73                    EState *estate);
74 static TupleTableSlot *EvalPlanQualNext(EState *estate);
75 static void EndEvalPlanQual(EState *estate);
76 static void ExecCheckQueryPerms(CmdType operation, Query *parseTree,
77                                         Plan *plan);
78 static void ExecCheckPlanPerms(Plan *plan, List *rangeTable,
79                                    CmdType operation);
80 static void ExecCheckRTPerms(List *rangeTable, CmdType operation);
81 static void ExecCheckRTEPerms(RangeTblEntry *rte, CmdType operation);
82
83 /* end of local decls */
84
85
86 /* ----------------------------------------------------------------
87  *              ExecutorStart
88  *
89  *              This routine must be called at the beginning of any execution of any
90  *              query plan
91  *
92  *              returns a TupleDesc which describes the attributes of the tuples to
93  *              be returned by the query.  (Same value is saved in queryDesc)
94  *
95  * NB: the CurrentMemoryContext when this is called must be the context
96  * to be used as the per-query context for the query plan.      ExecutorRun()
97  * and ExecutorEnd() must be called in this same memory context.
98  * ----------------------------------------------------------------
99  */
100 TupleDesc
101 ExecutorStart(QueryDesc *queryDesc, EState *estate)
102 {
103         TupleDesc       result;
104
105         /* sanity checks */
106         Assert(queryDesc != NULL);
107
108         if (queryDesc->plantree->nParamExec > 0)
109         {
110                 estate->es_param_exec_vals = (ParamExecData *)
111                         palloc(queryDesc->plantree->nParamExec * sizeof(ParamExecData));
112                 MemSet(estate->es_param_exec_vals, 0,
113                            queryDesc->plantree->nParamExec * sizeof(ParamExecData));
114         }
115
116         /*
117          * Make our own private copy of the current query snapshot data.
118          *
119          * This "freezes" our idea of which tuples are good and which are not for
120          * the life of this query, even if it outlives the current command and
121          * current snapshot.
122          */
123         estate->es_snapshot = CopyQuerySnapshot();
124
125         /*
126          * Initialize the plan
127          */
128         result = InitPlan(queryDesc->operation,
129                                           queryDesc->parsetree,
130                                           queryDesc->plantree,
131                                           estate);
132
133         queryDesc->tupDesc = result;
134
135         return result;
136 }
137
138 /* ----------------------------------------------------------------
139  *              ExecutorRun
140  *
141  *              This is the main routine of the executor module. It accepts
142  *              the query descriptor from the traffic cop and executes the
143  *              query plan.
144  *
145  *              ExecutorStart must have been called already.
146  *
147  *              If direction is NoMovementScanDirection then nothing is done
148  *              except to start up/shut down the destination.  Otherwise,
149  *              we retrieve up to 'count' tuples in the specified direction.
150  *
151  *              Note: count = 0 is interpreted as no portal limit, e.g. run to
152  *              completion.
153  *
154  * ----------------------------------------------------------------
155  */
156 TupleTableSlot *
157 ExecutorRun(QueryDesc *queryDesc, EState *estate,
158                         ScanDirection direction, long count)
159 {
160         CmdType         operation;
161         Plan       *plan;
162         CommandDest dest;
163         DestReceiver *destfunc;
164         TupleTableSlot *result;
165
166         /*
167          * sanity checks
168          */
169         Assert(queryDesc != NULL);
170
171         /*
172          * extract information from the query descriptor and the query
173          * feature.
174          */
175         operation = queryDesc->operation;
176         plan = queryDesc->plantree;
177         dest = queryDesc->dest;
178
179         /*
180          * startup tuple receiver
181          */
182         estate->es_processed = 0;
183         estate->es_lastoid = InvalidOid;
184
185         destfunc = DestToFunction(dest);
186         (*destfunc->setup) (destfunc, (int) operation,
187                                                 queryDesc->portalName, queryDesc->tupDesc);
188
189         /*
190          * run plan
191          */
192         if (direction == NoMovementScanDirection)
193                 result = NULL;
194         else
195                 result = ExecutePlan(estate,
196                                                          plan,
197                                                          operation,
198                                                          count,
199                                                          direction,
200                                                          destfunc);
201
202         /*
203          * shutdown receiver
204          */
205         (*destfunc->cleanup) (destfunc);
206
207         return result;
208 }
209
210 /* ----------------------------------------------------------------
211  *              ExecutorEnd
212  *
213  *              This routine must be called at the end of execution of any
214  *              query plan
215  * ----------------------------------------------------------------
216  */
217 void
218 ExecutorEnd(QueryDesc *queryDesc, EState *estate)
219 {
220         /* sanity checks */
221         Assert(queryDesc != NULL);
222
223         EndPlan(queryDesc->plantree, estate);
224
225         if (estate->es_snapshot != NULL)
226         {
227                 if (estate->es_snapshot->xcnt > 0)
228                         pfree(estate->es_snapshot->xip);
229                 pfree(estate->es_snapshot);
230                 estate->es_snapshot = NULL;
231         }
232
233         if (estate->es_param_exec_vals != NULL)
234         {
235                 pfree(estate->es_param_exec_vals);
236                 estate->es_param_exec_vals = NULL;
237         }
238 }
239
240
241 /*
242  * ExecCheckQueryPerms
243  *              Check access permissions for all relations referenced in a query.
244  */
245 static void
246 ExecCheckQueryPerms(CmdType operation, Query *parseTree, Plan *plan)
247 {
248         /*
249          * Check RTEs in the query's primary rangetable.
250          */
251         ExecCheckRTPerms(parseTree->rtable, operation);
252
253         /*
254          * Search for subplans and APPEND nodes to check their rangetables.
255          */
256         ExecCheckPlanPerms(plan, parseTree->rtable, operation);
257 }
258
259 /*
260  * ExecCheckPlanPerms
261  *              Recursively scan the plan tree to check access permissions in
262  *              subplans.
263  */
264 static void
265 ExecCheckPlanPerms(Plan *plan, List *rangeTable, CmdType operation)
266 {
267         List       *subp;
268
269         if (plan == NULL)
270                 return;
271
272         /* Check subplans, which we assume are plain SELECT queries */
273
274         foreach(subp, plan->initPlan)
275         {
276                 SubPlan    *subplan = (SubPlan *) lfirst(subp);
277
278                 ExecCheckRTPerms(subplan->rtable, CMD_SELECT);
279                 ExecCheckPlanPerms(subplan->plan, subplan->rtable, CMD_SELECT);
280         }
281         foreach(subp, plan->subPlan)
282         {
283                 SubPlan    *subplan = (SubPlan *) lfirst(subp);
284
285                 ExecCheckRTPerms(subplan->rtable, CMD_SELECT);
286                 ExecCheckPlanPerms(subplan->plan, subplan->rtable, CMD_SELECT);
287         }
288
289         /* Check lower plan nodes */
290
291         ExecCheckPlanPerms(plan->lefttree, rangeTable, operation);
292         ExecCheckPlanPerms(plan->righttree, rangeTable, operation);
293
294         /* Do node-type-specific checks */
295
296         switch (nodeTag(plan))
297         {
298                 case T_SubqueryScan:
299                         {
300                                 SubqueryScan *scan = (SubqueryScan *) plan;
301                                 RangeTblEntry *rte;
302
303                                 /* Recursively check the subquery */
304                                 rte = rt_fetch(scan->scan.scanrelid, rangeTable);
305                                 Assert(rte->rtekind == RTE_SUBQUERY);
306                                 ExecCheckQueryPerms(operation, rte->subquery, scan->subplan);
307                                 break;
308                         }
309                 case T_Append:
310                         {
311                                 Append     *app = (Append *) plan;
312                                 List       *appendplans;
313
314                                 foreach(appendplans, app->appendplans)
315                                 {
316                                         ExecCheckPlanPerms((Plan *) lfirst(appendplans),
317                                                                            rangeTable,
318                                                                            operation);
319                                 }
320                                 break;
321                         }
322
323                 default:
324                         break;
325         }
326 }
327
328 /*
329  * ExecCheckRTPerms
330  *              Check access permissions for all relations listed in a range table.
331  */
332 static void
333 ExecCheckRTPerms(List *rangeTable, CmdType operation)
334 {
335         List       *lp;
336
337         foreach(lp, rangeTable)
338         {
339                 RangeTblEntry *rte = lfirst(lp);
340
341                 ExecCheckRTEPerms(rte, operation);
342         }
343 }
344
345 /*
346  * ExecCheckRTEPerms
347  *              Check access permissions for a single RTE.
348  */
349 static void
350 ExecCheckRTEPerms(RangeTblEntry *rte, CmdType operation)
351 {
352         Oid                     relOid;
353         Oid                     userid;
354         AclResult       aclcheck_result;
355
356         /*
357          * Only plain-relation RTEs need to be checked here.  Subquery RTEs
358          * will be checked when ExecCheckPlanPerms finds the SubqueryScan
359          * node, and function RTEs are checked by init_fcache when the
360          * function is prepared for execution.  Join and special RTEs need no
361          * checks.
362          */
363         if (rte->rtekind != RTE_RELATION)
364                 return;
365
366         relOid = rte->relid;
367
368         /*
369          * userid to check as: current user unless we have a setuid
370          * indication.
371          *
372          * Note: GetUserId() is presently fast enough that there's no harm in
373          * calling it separately for each RTE.  If that stops being true, we
374          * could call it once in ExecCheckQueryPerms and pass the userid down
375          * from there.  But for now, no need for the extra clutter.
376          */
377         userid = rte->checkAsUser ? rte->checkAsUser : GetUserId();
378
379 #define CHECK(MODE)             pg_class_aclcheck(relOid, userid, MODE)
380
381         if (rte->checkForRead)
382         {
383                 aclcheck_result = CHECK(ACL_SELECT);
384                 if (aclcheck_result != ACLCHECK_OK)
385                         aclcheck_error(aclcheck_result, get_rel_name(relOid));
386         }
387
388         if (rte->checkForWrite)
389         {
390                 /*
391                  * Note: write access in a SELECT context means SELECT FOR UPDATE.
392                  * Right now we don't distinguish that from true update as far as
393                  * permissions checks are concerned.
394                  */
395                 switch (operation)
396                 {
397                         case CMD_INSERT:
398                                 aclcheck_result = CHECK(ACL_INSERT);
399                                 break;
400                         case CMD_SELECT:
401                         case CMD_UPDATE:
402                                 aclcheck_result = CHECK(ACL_UPDATE);
403                                 break;
404                         case CMD_DELETE:
405                                 aclcheck_result = CHECK(ACL_DELETE);
406                                 break;
407                         default:
408                                 elog(ERROR, "ExecCheckRTEPerms: bogus operation %d",
409                                          operation);
410                                 aclcheck_result = ACLCHECK_OK;  /* keep compiler quiet */
411                                 break;
412                 }
413                 if (aclcheck_result != ACLCHECK_OK)
414                         aclcheck_error(aclcheck_result, get_rel_name(relOid));
415         }
416 }
417
418
419 /* ===============================================================
420  * ===============================================================
421                                                  static routines follow
422  * ===============================================================
423  * ===============================================================
424  */
425
426 typedef struct execRowMark
427 {
428         Relation        relation;
429         Index           rti;
430         char            resname[32];
431 } execRowMark;
432
433 typedef struct evalPlanQual
434 {
435         Plan       *plan;
436         Index           rti;
437         EState          estate;
438         struct evalPlanQual *free;
439 } evalPlanQual;
440
441 /* ----------------------------------------------------------------
442  *              InitPlan
443  *
444  *              Initializes the query plan: open files, allocate storage
445  *              and start up the rule manager
446  * ----------------------------------------------------------------
447  */
448 static TupleDesc
449 InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
450 {
451         List       *rangeTable;
452         Relation        intoRelationDesc;
453         TupleDesc       tupType;
454
455         /*
456          * Do permissions checks.
457          */
458         ExecCheckQueryPerms(operation, parseTree, plan);
459
460         /*
461          * get information from query descriptor
462          */
463         rangeTable = parseTree->rtable;
464
465         /*
466          * initialize the node's execution state
467          */
468         estate->es_range_table = rangeTable;
469
470         /*
471          * if there is a result relation, initialize result relation stuff
472          */
473         if (parseTree->resultRelation != 0 && operation != CMD_SELECT)
474         {
475                 List       *resultRelations = parseTree->resultRelations;
476                 int                     numResultRelations;
477                 ResultRelInfo *resultRelInfos;
478
479                 if (resultRelations != NIL)
480                 {
481                         /*
482                          * Multiple result relations (due to inheritance)
483                          * parseTree->resultRelations identifies them all
484                          */
485                         ResultRelInfo *resultRelInfo;
486
487                         numResultRelations = length(resultRelations);
488                         resultRelInfos = (ResultRelInfo *)
489                                 palloc(numResultRelations * sizeof(ResultRelInfo));
490                         resultRelInfo = resultRelInfos;
491                         while (resultRelations != NIL)
492                         {
493                                 initResultRelInfo(resultRelInfo,
494                                                                   lfirsti(resultRelations),
495                                                                   rangeTable,
496                                                                   operation);
497                                 resultRelInfo++;
498                                 resultRelations = lnext(resultRelations);
499                         }
500                 }
501                 else
502                 {
503                         /*
504                          * Single result relation identified by
505                          * parseTree->resultRelation
506                          */
507                         numResultRelations = 1;
508                         resultRelInfos = (ResultRelInfo *) palloc(sizeof(ResultRelInfo));
509                         initResultRelInfo(resultRelInfos,
510                                                           parseTree->resultRelation,
511                                                           rangeTable,
512                                                           operation);
513                 }
514
515                 estate->es_result_relations = resultRelInfos;
516                 estate->es_num_result_relations = numResultRelations;
517                 /* Initialize to first or only result rel */
518                 estate->es_result_relation_info = resultRelInfos;
519         }
520         else
521         {
522                 /*
523                  * if no result relation, then set state appropriately
524                  */
525                 estate->es_result_relations = NULL;
526                 estate->es_num_result_relations = 0;
527                 estate->es_result_relation_info = NULL;
528         }
529
530         /*
531          * Have to lock relations selected for update
532          */
533         estate->es_rowMark = NIL;
534         if (parseTree->rowMarks != NIL)
535         {
536                 List       *l;
537
538                 foreach(l, parseTree->rowMarks)
539                 {
540                         Index           rti = lfirsti(l);
541                         Oid                     relid = getrelid(rti, rangeTable);
542                         Relation        relation;
543                         execRowMark *erm;
544
545                         relation = heap_open(relid, RowShareLock);
546                         erm = (execRowMark *) palloc(sizeof(execRowMark));
547                         erm->relation = relation;
548                         erm->rti = rti;
549                         snprintf(erm->resname, 32, "ctid%u", rti);
550                         estate->es_rowMark = lappend(estate->es_rowMark, erm);
551                 }
552         }
553
554         /*
555          * initialize the executor "tuple" table.  We need slots for all the
556          * plan nodes, plus possibly output slots for the junkfilter(s). At
557          * this point we aren't sure if we need junkfilters, so just add slots
558          * for them unconditionally.
559          */
560         {
561                 int                     nSlots = ExecCountSlotsNode(plan);
562
563                 if (parseTree->resultRelations != NIL)
564                         nSlots += length(parseTree->resultRelations);
565                 else
566                         nSlots += 1;
567                 estate->es_tupleTable = ExecCreateTupleTable(nSlots);
568         }
569
570         /* mark EvalPlanQual not active */
571         estate->es_origPlan = plan;
572         estate->es_evalPlanQual = NULL;
573         estate->es_evTuple = NULL;
574         estate->es_evTupleNull = NULL;
575         estate->es_useEvalPlan = false;
576
577         /*
578          * initialize the private state information for all the nodes in the
579          * query tree.  This opens files, allocates storage and leaves us
580          * ready to start processing tuples.
581          */
582         ExecInitNode(plan, estate, NULL);
583
584         /*
585          * Get the tuple descriptor describing the type of tuples to return.
586          * (this is especially important if we are creating a relation with
587          * "SELECT INTO")
588          */
589         tupType = ExecGetTupType(plan);         /* tuple descriptor */
590
591         /*
592          * Initialize the junk filter if needed. SELECT and INSERT queries
593          * need a filter if there are any junk attrs in the tlist.      UPDATE and
594          * DELETE always need one, since there's always a junk 'ctid'
595          * attribute present --- no need to look first.
596          */
597         {
598                 bool            junk_filter_needed = false;
599                 List       *tlist;
600
601                 switch (operation)
602                 {
603                         case CMD_SELECT:
604                         case CMD_INSERT:
605                                 foreach(tlist, plan->targetlist)
606                                 {
607                                         TargetEntry *tle = (TargetEntry *) lfirst(tlist);
608
609                                         if (tle->resdom->resjunk)
610                                         {
611                                                 junk_filter_needed = true;
612                                                 break;
613                                         }
614                                 }
615                                 break;
616                         case CMD_UPDATE:
617                         case CMD_DELETE:
618                                 junk_filter_needed = true;
619                                 break;
620                         default:
621                                 break;
622                 }
623
624                 if (junk_filter_needed)
625                 {
626                         /*
627                          * If there are multiple result relations, each one needs its
628                          * own junk filter.  Note this is only possible for
629                          * UPDATE/DELETE, so we can't be fooled by some needing a
630                          * filter and some not.
631                          */
632                         if (parseTree->resultRelations != NIL)
633                         {
634                                 List       *subplans;
635                                 ResultRelInfo *resultRelInfo;
636
637                                 /* Top plan had better be an Append here. */
638                                 Assert(IsA(plan, Append));
639                                 Assert(((Append *) plan)->isTarget);
640                                 subplans = ((Append *) plan)->appendplans;
641                                 Assert(length(subplans) == estate->es_num_result_relations);
642                                 resultRelInfo = estate->es_result_relations;
643                                 while (subplans != NIL)
644                                 {
645                                         Plan       *subplan = (Plan *) lfirst(subplans);
646                                         JunkFilter *j;
647
648                                         j = ExecInitJunkFilter(subplan->targetlist,
649                                                                                    ExecGetTupType(subplan),
650                                                           ExecAllocTableSlot(estate->es_tupleTable));
651                                         resultRelInfo->ri_junkFilter = j;
652                                         resultRelInfo++;
653                                         subplans = lnext(subplans);
654                                 }
655
656                                 /*
657                                  * Set active junkfilter too; at this point ExecInitAppend
658                                  * has already selected an active result relation...
659                                  */
660                                 estate->es_junkFilter =
661                                         estate->es_result_relation_info->ri_junkFilter;
662                         }
663                         else
664                         {
665                                 /* Normal case with just one JunkFilter */
666                                 JunkFilter *j;
667
668                                 j = ExecInitJunkFilter(plan->targetlist,
669                                                                            tupType,
670                                                           ExecAllocTableSlot(estate->es_tupleTable));
671                                 estate->es_junkFilter = j;
672                                 if (estate->es_result_relation_info)
673                                         estate->es_result_relation_info->ri_junkFilter = j;
674
675                                 /* For SELECT, want to return the cleaned tuple type */
676                                 if (operation == CMD_SELECT)
677                                         tupType = j->jf_cleanTupType;
678                         }
679                 }
680                 else
681                         estate->es_junkFilter = NULL;
682         }
683
684         /*
685          * initialize the "into" relation
686          */
687         intoRelationDesc = (Relation) NULL;
688
689         if (operation == CMD_SELECT)
690         {
691                 if (!parseTree->isPortal)
692                 {
693                         /*
694                          * a select into table --- need to create the "into" table
695                          */
696                         if (parseTree->into != NULL)
697                         {
698                                 char       *intoName;
699                                 Oid                     namespaceId;
700                                 AclResult       aclresult;
701                                 Oid                     intoRelationId;
702                                 TupleDesc       tupdesc;
703
704                                 /*
705                                  * find namespace to create in, check permissions
706                                  */
707                                 intoName = parseTree->into->relname;
708                                 namespaceId = RangeVarGetCreationNamespace(parseTree->into);
709
710                                 aclresult = pg_namespace_aclcheck(namespaceId, GetUserId(),
711                                                                                                   ACL_CREATE);
712                                 if (aclresult != ACLCHECK_OK)
713                                         aclcheck_error(aclresult,
714                                                                    get_namespace_name(namespaceId));
715
716                                 /*
717                                  * have to copy tupType to get rid of constraints
718                                  */
719                                 tupdesc = CreateTupleDescCopy(tupType);
720
721                                 /*
722                                  * Formerly we forced the output table to have OIDs, but
723                                  * as of 7.3 it will not have OIDs, because it's too late
724                                  * here to change the tupdescs of the already-initialized
725                                  * plan tree.  (Perhaps we could recurse and change them
726                                  * all, but it's not really worth the trouble IMHO...)
727                                  */
728
729                                 intoRelationId =
730                                         heap_create_with_catalog(intoName,
731                                                                                          namespaceId,
732                                                                                          tupdesc,
733                                                                                          RELKIND_RELATION,
734                                                                                          false,
735                                                                                          allowSystemTableMods);
736
737                                 FreeTupleDesc(tupdesc);
738
739                                 /*
740                                  * Advance command counter so that the newly-created
741                                  * relation's catalog tuples will be visible to heap_open.
742                                  */
743                                 CommandCounterIncrement();
744
745                                 /*
746                                  * If necessary, create a TOAST table for the into
747                                  * relation. Note that AlterTableCreateToastTable ends
748                                  * with CommandCounterIncrement(), so that the TOAST table
749                                  * will be visible for insertion.
750                                  */
751                                 AlterTableCreateToastTable(intoRelationId, true);
752
753                                 intoRelationDesc = heap_open(intoRelationId,
754                                                                                          AccessExclusiveLock);
755                         }
756                 }
757         }
758
759         estate->es_into_relation_descriptor = intoRelationDesc;
760
761         return tupType;
762 }
763
764 /*
765  * Initialize ResultRelInfo data for one result relation
766  */
767 static void
768 initResultRelInfo(ResultRelInfo *resultRelInfo,
769                                   Index resultRelationIndex,
770                                   List *rangeTable,
771                                   CmdType operation)
772 {
773         Oid                     resultRelationOid;
774         Relation        resultRelationDesc;
775
776         resultRelationOid = getrelid(resultRelationIndex, rangeTable);
777         resultRelationDesc = heap_open(resultRelationOid, RowExclusiveLock);
778
779         switch (resultRelationDesc->rd_rel->relkind)
780         {
781                 case RELKIND_SEQUENCE:
782                         elog(ERROR, "You can't change sequence relation %s",
783                                  RelationGetRelationName(resultRelationDesc));
784                         break;
785                 case RELKIND_TOASTVALUE:
786                         elog(ERROR, "You can't change toast relation %s",
787                                  RelationGetRelationName(resultRelationDesc));
788                         break;
789                 case RELKIND_VIEW:
790                         elog(ERROR, "You can't change view relation %s",
791                                  RelationGetRelationName(resultRelationDesc));
792                         break;
793         }
794
795         MemSet(resultRelInfo, 0, sizeof(ResultRelInfo));
796         resultRelInfo->type = T_ResultRelInfo;
797         resultRelInfo->ri_RangeTableIndex = resultRelationIndex;
798         resultRelInfo->ri_RelationDesc = resultRelationDesc;
799         resultRelInfo->ri_NumIndices = 0;
800         resultRelInfo->ri_IndexRelationDescs = NULL;
801         resultRelInfo->ri_IndexRelationInfo = NULL;
802         /* make a copy so as not to depend on relcache info not changing... */
803         resultRelInfo->ri_TrigDesc = CopyTriggerDesc(resultRelationDesc->trigdesc);
804         resultRelInfo->ri_TrigFunctions = NULL;
805         resultRelInfo->ri_ConstraintExprs = NULL;
806         resultRelInfo->ri_junkFilter = NULL;
807
808         /*
809          * If there are indices on the result relation, open them and save
810          * descriptors in the result relation info, so that we can add new
811          * index entries for the tuples we add/update.  We need not do this
812          * for a DELETE, however, since deletion doesn't affect indexes.
813          */
814         if (resultRelationDesc->rd_rel->relhasindex &&
815                 operation != CMD_DELETE)
816                 ExecOpenIndices(resultRelInfo);
817 }
818
819 /* ----------------------------------------------------------------
820  *              EndPlan
821  *
822  *              Cleans up the query plan -- closes files and free up storages
823  * ----------------------------------------------------------------
824  */
825 static void
826 EndPlan(Plan *plan, EState *estate)
827 {
828         ResultRelInfo *resultRelInfo;
829         int                     i;
830         List       *l;
831
832         /*
833          * shut down any PlanQual processing we were doing
834          */
835         if (estate->es_evalPlanQual != NULL)
836                 EndEvalPlanQual(estate);
837
838         /*
839          * shut down the node-type-specific query processing
840          */
841         ExecEndNode(plan, NULL);
842
843         /*
844          * destroy the executor "tuple" table.
845          */
846         ExecDropTupleTable(estate->es_tupleTable, true);
847         estate->es_tupleTable = NULL;
848
849         /*
850          * close the result relation(s) if any, but hold locks until xact
851          * commit.      Also clean up junkfilters if present.
852          */
853         resultRelInfo = estate->es_result_relations;
854         for (i = estate->es_num_result_relations; i > 0; i--)
855         {
856                 /* Close indices and then the relation itself */
857                 ExecCloseIndices(resultRelInfo);
858                 heap_close(resultRelInfo->ri_RelationDesc, NoLock);
859                 /* Delete the junkfilter if any */
860                 if (resultRelInfo->ri_junkFilter != NULL)
861                         ExecFreeJunkFilter(resultRelInfo->ri_junkFilter);
862                 resultRelInfo++;
863         }
864
865         /*
866          * close the "into" relation if necessary, again keeping lock
867          */
868         if (estate->es_into_relation_descriptor != NULL)
869                 heap_close(estate->es_into_relation_descriptor, NoLock);
870
871         /*
872          * There might be a junkfilter without a result relation.
873          */
874         if (estate->es_num_result_relations == 0 &&
875                 estate->es_junkFilter != NULL)
876         {
877                 ExecFreeJunkFilter(estate->es_junkFilter);
878                 estate->es_junkFilter = NULL;
879         }
880
881         /*
882          * close any relations selected FOR UPDATE, again keeping locks
883          */
884         foreach(l, estate->es_rowMark)
885         {
886                 execRowMark *erm = lfirst(l);
887
888                 heap_close(erm->relation, NoLock);
889         }
890 }
891
892 /* ----------------------------------------------------------------
893  *              ExecutePlan
894  *
895  *              processes the query plan to retrieve 'numberTuples' tuples in the
896  *              direction specified.
897  *              Retrieves all tuples if numberTuples is 0
898  *
899  *              result is either a slot containing the last tuple in the case
900  *              of a SELECT or NULL otherwise.
901  *
902  * Note: the ctid attribute is a 'junk' attribute that is removed before the
903  * user can see it
904  * ----------------------------------------------------------------
905  */
906 static TupleTableSlot *
907 ExecutePlan(EState *estate,
908                         Plan *plan,
909                         CmdType operation,
910                         long numberTuples,
911                         ScanDirection direction,
912                         DestReceiver *destfunc)
913 {
914         JunkFilter *junkfilter;
915         TupleTableSlot *slot;
916         ItemPointer tupleid = NULL;
917         ItemPointerData tuple_ctid;
918         long            current_tuple_count;
919         TupleTableSlot *result;
920
921         /*
922          * initialize local variables
923          */
924         slot = NULL;
925         current_tuple_count = 0;
926         result = NULL;
927
928         /*
929          * Set the direction.
930          */
931         estate->es_direction = direction;
932
933         /*
934          * Loop until we've processed the proper number of tuples from the
935          * plan.
936          */
937
938         for (;;)
939         {
940                 /* Reset the per-output-tuple exprcontext */
941                 ResetPerTupleExprContext(estate);
942
943                 /*
944                  * Execute the plan and obtain a tuple
945                  */
946 lnext:  ;
947                 if (estate->es_useEvalPlan)
948                 {
949                         slot = EvalPlanQualNext(estate);
950                         if (TupIsNull(slot))
951                                 slot = ExecProcNode(plan, NULL);
952                 }
953                 else
954                         slot = ExecProcNode(plan, NULL);
955
956                 /*
957                  * if the tuple is null, then we assume there is nothing more to
958                  * process so we just return null...
959                  */
960                 if (TupIsNull(slot))
961                 {
962                         result = NULL;
963                         break;
964                 }
965
966                 /*
967                  * if we have a junk filter, then project a new tuple with the
968                  * junk removed.
969                  *
970                  * Store this new "clean" tuple in the junkfilter's resultSlot.
971                  * (Formerly, we stored it back over the "dirty" tuple, which is
972                  * WRONG because that tuple slot has the wrong descriptor.)
973                  *
974                  * Also, extract all the junk information we need.
975                  */
976                 if ((junkfilter = estate->es_junkFilter) != (JunkFilter *) NULL)
977                 {
978                         Datum           datum;
979                         HeapTuple       newTuple;
980                         bool            isNull;
981
982                         /*
983                          * extract the 'ctid' junk attribute.
984                          */
985                         if (operation == CMD_UPDATE || operation == CMD_DELETE)
986                         {
987                                 if (!ExecGetJunkAttribute(junkfilter,
988                                                                                   slot,
989                                                                                   "ctid",
990                                                                                   &datum,
991                                                                                   &isNull))
992                                         elog(ERROR, "ExecutePlan: NO (junk) `ctid' was found!");
993
994                                 /* shouldn't ever get a null result... */
995                                 if (isNull)
996                                         elog(ERROR, "ExecutePlan: (junk) `ctid' is NULL!");
997
998                                 tupleid = (ItemPointer) DatumGetPointer(datum);
999                                 tuple_ctid = *tupleid;  /* make sure we don't free the
1000                                                                                  * ctid!! */
1001                                 tupleid = &tuple_ctid;
1002                         }
1003                         else if (estate->es_rowMark != NIL)
1004                         {
1005                                 List       *l;
1006
1007                 lmark:  ;
1008                                 foreach(l, estate->es_rowMark)
1009                                 {
1010                                         execRowMark *erm = lfirst(l);
1011                                         Buffer          buffer;
1012                                         HeapTupleData tuple;
1013                                         TupleTableSlot *newSlot;
1014                                         int                     test;
1015
1016                                         if (!ExecGetJunkAttribute(junkfilter,
1017                                                                                           slot,
1018                                                                                           erm->resname,
1019                                                                                           &datum,
1020                                                                                           &isNull))
1021                                                 elog(ERROR, "ExecutePlan: NO (junk) `%s' was found!",
1022                                                          erm->resname);
1023
1024                                         /* shouldn't ever get a null result... */
1025                                         if (isNull)
1026                                                 elog(ERROR, "ExecutePlan: (junk) `%s' is NULL!",
1027                                                          erm->resname);
1028
1029                                         tuple.t_self = *((ItemPointer) DatumGetPointer(datum));
1030                                         test = heap_mark4update(erm->relation, &tuple, &buffer,
1031                                                                                         estate->es_snapshot->curcid);
1032                                         ReleaseBuffer(buffer);
1033                                         switch (test)
1034                                         {
1035                                                 case HeapTupleSelfUpdated:
1036                                                         /* treat it as deleted; do not process */
1037                                                         goto lnext;
1038
1039                                                 case HeapTupleMayBeUpdated:
1040                                                         break;
1041
1042                                                 case HeapTupleUpdated:
1043                                                         if (XactIsoLevel == XACT_SERIALIZABLE)
1044                                                                 elog(ERROR, "Can't serialize access due to concurrent update");
1045                                                         if (!(ItemPointerEquals(&(tuple.t_self),
1046                                                                   (ItemPointer) DatumGetPointer(datum))))
1047                                                         {
1048                                                                 newSlot = EvalPlanQual(estate, erm->rti, &(tuple.t_self));
1049                                                                 if (!(TupIsNull(newSlot)))
1050                                                                 {
1051                                                                         slot = newSlot;
1052                                                                         estate->es_useEvalPlan = true;
1053                                                                         goto lmark;
1054                                                                 }
1055                                                         }
1056
1057                                                         /*
1058                                                          * if tuple was deleted or PlanQual failed for
1059                                                          * updated tuple - we must not return this
1060                                                          * tuple!
1061                                                          */
1062                                                         goto lnext;
1063
1064                                                 default:
1065                                                         elog(ERROR, "Unknown status %u from heap_mark4update", test);
1066                                                         return (NULL);
1067                                         }
1068                                 }
1069                         }
1070
1071                         /*
1072                          * Finally create a new "clean" tuple with all junk attributes
1073                          * removed
1074                          */
1075                         newTuple = ExecRemoveJunk(junkfilter, slot);
1076
1077                         slot = ExecStoreTuple(newTuple,         /* tuple to store */
1078                                                                   junkfilter->jf_resultSlot,    /* dest slot */
1079                                                                   InvalidBuffer,                /* this tuple has no
1080                                                                                                                  * buffer */
1081                                                                   true);                /* tuple should be pfreed */
1082                 }
1083
1084                 /*
1085                  * now that we have a tuple, do the appropriate thing with it..
1086                  * either return it to the user, add it to a relation someplace,
1087                  * delete it from a relation, or modify some of its attributes.
1088                  */
1089                 switch (operation)
1090                 {
1091                         case CMD_SELECT:
1092                                 ExecSelect(slot,        /* slot containing tuple */
1093                                                    destfunc,    /* destination's tuple-receiver
1094                                                                                  * obj */
1095                                                    estate);
1096                                 result = slot;
1097                                 break;
1098
1099                         case CMD_INSERT:
1100                                 ExecInsert(slot, tupleid, estate);
1101                                 result = NULL;
1102                                 break;
1103
1104                         case CMD_DELETE:
1105                                 ExecDelete(slot, tupleid, estate);
1106                                 result = NULL;
1107                                 break;
1108
1109                         case CMD_UPDATE:
1110                                 ExecUpdate(slot, tupleid, estate);
1111                                 result = NULL;
1112                                 break;
1113
1114                         default:
1115                                 elog(LOG, "ExecutePlan: unknown operation in queryDesc");
1116                                 result = NULL;
1117                                 break;
1118                 }
1119
1120                 /*
1121                  * check our tuple count.. if we've processed the proper number
1122                  * then quit, else loop again and process more tuples..
1123                  */
1124                 current_tuple_count++;
1125                 if (numberTuples == current_tuple_count)
1126                         break;
1127         }
1128
1129         /*
1130          * here, result is either a slot containing a tuple in the case of a
1131          * SELECT or NULL otherwise.
1132          */
1133         return result;
1134 }
1135
1136 /* ----------------------------------------------------------------
1137  *              ExecSelect
1138  *
1139  *              SELECTs are easy.. we just pass the tuple to the appropriate
1140  *              print function.  The only complexity is when we do a
1141  *              "SELECT INTO", in which case we insert the tuple into
1142  *              the appropriate relation (note: this is a newly created relation
1143  *              so we don't need to worry about indices or locks.)
1144  * ----------------------------------------------------------------
1145  */
1146 static void
1147 ExecSelect(TupleTableSlot *slot,
1148                    DestReceiver *destfunc,
1149                    EState *estate)
1150 {
1151         HeapTuple       tuple;
1152         TupleDesc       attrtype;
1153
1154         /*
1155          * get the heap tuple out of the tuple table slot
1156          */
1157         tuple = slot->val;
1158         attrtype = slot->ttc_tupleDescriptor;
1159
1160         /*
1161          * insert the tuple into the "into relation"
1162          */
1163         if (estate->es_into_relation_descriptor != NULL)
1164         {
1165                 heap_insert(estate->es_into_relation_descriptor, tuple,
1166                                         estate->es_snapshot->curcid);
1167                 IncrAppended();
1168         }
1169
1170         /*
1171          * send the tuple to the front end (or the screen)
1172          */
1173         (*destfunc->receiveTuple) (tuple, attrtype, destfunc);
1174         IncrRetrieved();
1175         (estate->es_processed)++;
1176 }
1177
1178 /* ----------------------------------------------------------------
1179  *              ExecInsert
1180  *
1181  *              INSERTs are trickier.. we have to insert the tuple into
1182  *              the base relation and insert appropriate tuples into the
1183  *              index relations.
1184  * ----------------------------------------------------------------
1185  */
1186 static void
1187 ExecInsert(TupleTableSlot *slot,
1188                    ItemPointer tupleid,
1189                    EState *estate)
1190 {
1191         HeapTuple       tuple;
1192         ResultRelInfo *resultRelInfo;
1193         Relation        resultRelationDesc;
1194         int                     numIndices;
1195         Oid                     newId;
1196
1197         /*
1198          * get the heap tuple out of the tuple table slot
1199          */
1200         tuple = slot->val;
1201
1202         /*
1203          * get information on the (current) result relation
1204          */
1205         resultRelInfo = estate->es_result_relation_info;
1206         resultRelationDesc = resultRelInfo->ri_RelationDesc;
1207
1208         /* BEFORE ROW INSERT Triggers */
1209         if (resultRelInfo->ri_TrigDesc &&
1210           resultRelInfo->ri_TrigDesc->n_before_row[TRIGGER_EVENT_INSERT] > 0)
1211         {
1212                 HeapTuple       newtuple;
1213
1214                 newtuple = ExecBRInsertTriggers(estate, resultRelInfo, tuple);
1215
1216                 if (newtuple == NULL)   /* "do nothing" */
1217                         return;
1218
1219                 if (newtuple != tuple)  /* modified by Trigger(s) */
1220                 {
1221                         /*
1222                          * Insert modified tuple into tuple table slot, replacing the
1223                          * original.  We assume that it was allocated in per-tuple
1224                          * memory context, and therefore will go away by itself. The
1225                          * tuple table slot should not try to clear it.
1226                          */
1227                         ExecStoreTuple(newtuple, slot, InvalidBuffer, false);
1228                         tuple = newtuple;
1229                 }
1230         }
1231
1232         /*
1233          * Check the constraints of the tuple
1234          */
1235         if (resultRelationDesc->rd_att->constr)
1236                 ExecConstraints("ExecInsert", resultRelInfo, slot, estate);
1237
1238         /*
1239          * insert the tuple
1240          */
1241         newId = heap_insert(resultRelationDesc, tuple,
1242                                                 estate->es_snapshot->curcid);
1243
1244         IncrAppended();
1245         (estate->es_processed)++;
1246         estate->es_lastoid = newId;
1247         setLastTid(&(tuple->t_self));
1248
1249         /*
1250          * process indices
1251          *
1252          * Note: heap_insert adds a new tuple to a relation.  As a side effect,
1253          * the tupleid of the new tuple is placed in the new tuple's t_ctid
1254          * field.
1255          */
1256         numIndices = resultRelInfo->ri_NumIndices;
1257         if (numIndices > 0)
1258                 ExecInsertIndexTuples(slot, &(tuple->t_self), estate, false);
1259
1260         /* AFTER ROW INSERT Triggers */
1261         if (resultRelInfo->ri_TrigDesc)
1262                 ExecARInsertTriggers(estate, resultRelInfo, tuple);
1263 }
1264
1265 /* ----------------------------------------------------------------
1266  *              ExecDelete
1267  *
1268  *              DELETE is like UPDATE, we delete the tuple and its
1269  *              index tuples.
1270  * ----------------------------------------------------------------
1271  */
1272 static void
1273 ExecDelete(TupleTableSlot *slot,
1274                    ItemPointer tupleid,
1275                    EState *estate)
1276 {
1277         ResultRelInfo *resultRelInfo;
1278         Relation        resultRelationDesc;
1279         ItemPointerData ctid;
1280         int                     result;
1281
1282         /*
1283          * get information on the (current) result relation
1284          */
1285         resultRelInfo = estate->es_result_relation_info;
1286         resultRelationDesc = resultRelInfo->ri_RelationDesc;
1287
1288         /* BEFORE ROW DELETE Triggers */
1289         if (resultRelInfo->ri_TrigDesc &&
1290           resultRelInfo->ri_TrigDesc->n_before_row[TRIGGER_EVENT_DELETE] > 0)
1291         {
1292                 bool            dodelete;
1293
1294                 dodelete = ExecBRDeleteTriggers(estate, resultRelInfo, tupleid);
1295
1296                 if (!dodelete)                  /* "do nothing" */
1297                         return;
1298         }
1299
1300         /*
1301          * delete the tuple
1302          */
1303 ldelete:;
1304         result = heap_delete(resultRelationDesc, tupleid,
1305                                                  &ctid,
1306                                                  estate->es_snapshot->curcid);
1307         switch (result)
1308         {
1309                 case HeapTupleSelfUpdated:
1310                         /* already deleted by self; nothing to do */
1311                         return;
1312
1313                 case HeapTupleMayBeUpdated:
1314                         break;
1315
1316                 case HeapTupleUpdated:
1317                         if (XactIsoLevel == XACT_SERIALIZABLE)
1318                                 elog(ERROR, "Can't serialize access due to concurrent update");
1319                         else if (!(ItemPointerEquals(tupleid, &ctid)))
1320                         {
1321                                 TupleTableSlot *epqslot = EvalPlanQual(estate,
1322                                                            resultRelInfo->ri_RangeTableIndex, &ctid);
1323
1324                                 if (!TupIsNull(epqslot))
1325                                 {
1326                                         *tupleid = ctid;
1327                                         goto ldelete;
1328                                 }
1329                         }
1330                         /* tuple already deleted; nothing to do */
1331                         return;
1332
1333                 default:
1334                         elog(ERROR, "Unknown status %u from heap_delete", result);
1335                         return;
1336         }
1337
1338         IncrDeleted();
1339         (estate->es_processed)++;
1340
1341         /*
1342          * Note: Normally one would think that we have to delete index tuples
1343          * associated with the heap tuple now..
1344          *
1345          * ... but in POSTGRES, we have no need to do this because the vacuum
1346          * daemon automatically opens an index scan and deletes index tuples
1347          * when it finds deleted heap tuples. -cim 9/27/89
1348          */
1349
1350         /* AFTER ROW DELETE Triggers */
1351         if (resultRelInfo->ri_TrigDesc)
1352                 ExecARDeleteTriggers(estate, resultRelInfo, tupleid);
1353 }
1354
1355 /* ----------------------------------------------------------------
1356  *              ExecUpdate
1357  *
1358  *              note: we can't run UPDATE queries with transactions
1359  *              off because UPDATEs are actually INSERTs and our
1360  *              scan will mistakenly loop forever, updating the tuple
1361  *              it just inserted..      This should be fixed but until it
1362  *              is, we don't want to get stuck in an infinite loop
1363  *              which corrupts your database..
1364  * ----------------------------------------------------------------
1365  */
1366 static void
1367 ExecUpdate(TupleTableSlot *slot,
1368                    ItemPointer tupleid,
1369                    EState *estate)
1370 {
1371         HeapTuple       tuple;
1372         ResultRelInfo *resultRelInfo;
1373         Relation        resultRelationDesc;
1374         ItemPointerData ctid;
1375         int                     result;
1376         int                     numIndices;
1377
1378         /*
1379          * abort the operation if not running transactions
1380          */
1381         if (IsBootstrapProcessingMode())
1382         {
1383                 elog(WARNING, "ExecUpdate: UPDATE can't run without transactions");
1384                 return;
1385         }
1386
1387         /*
1388          * get the heap tuple out of the tuple table slot
1389          */
1390         tuple = slot->val;
1391
1392         /*
1393          * get information on the (current) result relation
1394          */
1395         resultRelInfo = estate->es_result_relation_info;
1396         resultRelationDesc = resultRelInfo->ri_RelationDesc;
1397
1398         /* BEFORE ROW UPDATE Triggers */
1399         if (resultRelInfo->ri_TrigDesc &&
1400           resultRelInfo->ri_TrigDesc->n_before_row[TRIGGER_EVENT_UPDATE] > 0)
1401         {
1402                 HeapTuple       newtuple;
1403
1404                 newtuple = ExecBRUpdateTriggers(estate, resultRelInfo,
1405                                                                                 tupleid, tuple);
1406
1407                 if (newtuple == NULL)   /* "do nothing" */
1408                         return;
1409
1410                 if (newtuple != tuple)  /* modified by Trigger(s) */
1411                 {
1412                         /*
1413                          * Insert modified tuple into tuple table slot, replacing the
1414                          * original.  We assume that it was allocated in per-tuple
1415                          * memory context, and therefore will go away by itself. The
1416                          * tuple table slot should not try to clear it.
1417                          */
1418                         ExecStoreTuple(newtuple, slot, InvalidBuffer, false);
1419                         tuple = newtuple;
1420                 }
1421         }
1422
1423         /*
1424          * Check the constraints of the tuple
1425          *
1426          * If we generate a new candidate tuple after EvalPlanQual testing, we
1427          * must loop back here and recheck constraints.  (We don't need to
1428          * redo triggers, however.      If there are any BEFORE triggers then
1429          * trigger.c will have done mark4update to lock the correct tuple, so
1430          * there's no need to do them again.)
1431          */
1432 lreplace:;
1433         if (resultRelationDesc->rd_att->constr)
1434                 ExecConstraints("ExecUpdate", resultRelInfo, slot, estate);
1435
1436         /*
1437          * replace the heap tuple
1438          */
1439         result = heap_update(resultRelationDesc, tupleid, tuple,
1440                                                  &ctid,
1441                                                  estate->es_snapshot->curcid);
1442         switch (result)
1443         {
1444                 case HeapTupleSelfUpdated:
1445                         /* already deleted by self; nothing to do */
1446                         return;
1447
1448                 case HeapTupleMayBeUpdated:
1449                         break;
1450
1451                 case HeapTupleUpdated:
1452                         if (XactIsoLevel == XACT_SERIALIZABLE)
1453                                 elog(ERROR, "Can't serialize access due to concurrent update");
1454                         else if (!(ItemPointerEquals(tupleid, &ctid)))
1455                         {
1456                                 TupleTableSlot *epqslot = EvalPlanQual(estate,
1457                                                            resultRelInfo->ri_RangeTableIndex, &ctid);
1458
1459                                 if (!TupIsNull(epqslot))
1460                                 {
1461                                         *tupleid = ctid;
1462                                         tuple = ExecRemoveJunk(estate->es_junkFilter, epqslot);
1463                                         slot = ExecStoreTuple(tuple,
1464                                                                         estate->es_junkFilter->jf_resultSlot,
1465                                                                                   InvalidBuffer, true);
1466                                         goto lreplace;
1467                                 }
1468                         }
1469                         /* tuple already deleted; nothing to do */
1470                         return;
1471
1472                 default:
1473                         elog(ERROR, "Unknown status %u from heap_update", result);
1474                         return;
1475         }
1476
1477         IncrReplaced();
1478         (estate->es_processed)++;
1479
1480         /*
1481          * Note: instead of having to update the old index tuples associated
1482          * with the heap tuple, all we do is form and insert new index tuples.
1483          * This is because UPDATEs are actually DELETEs and INSERTs and index
1484          * tuple deletion is done automagically by the vacuum daemon. All we
1485          * do is insert new index tuples.  -cim 9/27/89
1486          */
1487
1488         /*
1489          * process indices
1490          *
1491          * heap_update updates a tuple in the base relation by invalidating it
1492          * and then inserting a new tuple to the relation.      As a side effect,
1493          * the tupleid of the new tuple is placed in the new tuple's t_ctid
1494          * field.  So we now insert index tuples using the new tupleid stored
1495          * there.
1496          */
1497
1498         numIndices = resultRelInfo->ri_NumIndices;
1499         if (numIndices > 0)
1500                 ExecInsertIndexTuples(slot, &(tuple->t_self), estate, false);
1501
1502         /* AFTER ROW UPDATE Triggers */
1503         if (resultRelInfo->ri_TrigDesc)
1504                 ExecARUpdateTriggers(estate, resultRelInfo, tupleid, tuple);
1505 }
1506
1507 static char *
1508 ExecRelCheck(ResultRelInfo *resultRelInfo,
1509                          TupleTableSlot *slot, EState *estate)
1510 {
1511         Relation        rel = resultRelInfo->ri_RelationDesc;
1512         int                     ncheck = rel->rd_att->constr->num_check;
1513         ConstrCheck *check = rel->rd_att->constr->check;
1514         ExprContext *econtext;
1515         MemoryContext oldContext;
1516         List       *qual;
1517         int                     i;
1518
1519         /*
1520          * If first time through for this result relation, build expression
1521          * nodetrees for rel's constraint expressions.  Keep them in the
1522          * per-query memory context so they'll survive throughout the query.
1523          */
1524         if (resultRelInfo->ri_ConstraintExprs == NULL)
1525         {
1526                 oldContext = MemoryContextSwitchTo(estate->es_query_cxt);
1527                 resultRelInfo->ri_ConstraintExprs =
1528                         (List **) palloc(ncheck * sizeof(List *));
1529                 for (i = 0; i < ncheck; i++)
1530                 {
1531                         qual = (List *) stringToNode(check[i].ccbin);
1532                         resultRelInfo->ri_ConstraintExprs[i] = qual;
1533                 }
1534                 MemoryContextSwitchTo(oldContext);
1535         }
1536
1537         /*
1538          * We will use the EState's per-tuple context for evaluating
1539          * constraint expressions (creating it if it's not already there).
1540          */
1541         econtext = GetPerTupleExprContext(estate);
1542
1543         /* Arrange for econtext's scan tuple to be the tuple under test */
1544         econtext->ecxt_scantuple = slot;
1545
1546         /* And evaluate the constraints */
1547         for (i = 0; i < ncheck; i++)
1548         {
1549                 qual = resultRelInfo->ri_ConstraintExprs[i];
1550
1551                 /*
1552                  * NOTE: SQL92 specifies that a NULL result from a constraint
1553                  * expression is not to be treated as a failure.  Therefore, tell
1554                  * ExecQual to return TRUE for NULL.
1555                  */
1556                 if (!ExecQual(qual, econtext, true))
1557                         return check[i].ccname;
1558         }
1559
1560         /* NULL result means no error */
1561         return (char *) NULL;
1562 }
1563
1564 void
1565 ExecConstraints(const char *caller, ResultRelInfo *resultRelInfo,
1566                                 TupleTableSlot *slot, EState *estate)
1567 {
1568         Relation        rel = resultRelInfo->ri_RelationDesc;
1569         HeapTuple       tuple = slot->val;
1570         TupleConstr *constr = rel->rd_att->constr;
1571
1572         Assert(constr);
1573
1574         if (constr->has_not_null)
1575         {
1576                 int                     natts = rel->rd_att->natts;
1577                 int                     attrChk;
1578
1579                 for (attrChk = 1; attrChk <= natts; attrChk++)
1580                 {
1581                         if (rel->rd_att->attrs[attrChk - 1]->attnotnull &&
1582                                 heap_attisnull(tuple, attrChk))
1583                                 elog(ERROR, "%s: Fail to add null value in not null attribute %s",
1584                                          caller, NameStr(rel->rd_att->attrs[attrChk - 1]->attname));
1585                 }
1586         }
1587
1588         if (constr->num_check > 0)
1589         {
1590                 char       *failed;
1591
1592                 if ((failed = ExecRelCheck(resultRelInfo, slot, estate)) != NULL)
1593                         elog(ERROR, "%s: rejected due to CHECK constraint \"%s\" on \"%s\"",
1594                                  caller, failed, RelationGetRelationName(rel));
1595         }
1596 }
1597
1598 /*
1599  * Check a modified tuple to see if we want to process its updated version
1600  * under READ COMMITTED rules.
1601  *
1602  * See backend/executor/README for some info about how this works.
1603  */
1604 TupleTableSlot *
1605 EvalPlanQual(EState *estate, Index rti, ItemPointer tid)
1606 {
1607         evalPlanQual *epq;
1608         EState     *epqstate;
1609         Relation        relation;
1610         HeapTupleData tuple;
1611         HeapTuple       copyTuple = NULL;
1612         int                     rtsize;
1613         bool            endNode;
1614
1615         Assert(rti != 0);
1616
1617         /*
1618          * find relation containing target tuple
1619          */
1620         if (estate->es_result_relation_info != NULL &&
1621                 estate->es_result_relation_info->ri_RangeTableIndex == rti)
1622                 relation = estate->es_result_relation_info->ri_RelationDesc;
1623         else
1624         {
1625                 List       *l;
1626
1627                 relation = NULL;
1628                 foreach(l, estate->es_rowMark)
1629                 {
1630                         if (((execRowMark *) lfirst(l))->rti == rti)
1631                         {
1632                                 relation = ((execRowMark *) lfirst(l))->relation;
1633                                 break;
1634                         }
1635                 }
1636                 if (relation == NULL)
1637                         elog(ERROR, "EvalPlanQual: can't find RTE %d", (int) rti);
1638         }
1639
1640         /*
1641          * fetch tid tuple
1642          *
1643          * Loop here to deal with updated or busy tuples
1644          */
1645         tuple.t_self = *tid;
1646         for (;;)
1647         {
1648                 Buffer          buffer;
1649
1650                 if (heap_fetch(relation, SnapshotDirty, &tuple, &buffer, false, NULL))
1651                 {
1652                         TransactionId xwait = SnapshotDirty->xmax;
1653
1654                         if (TransactionIdIsValid(SnapshotDirty->xmin))
1655                                 elog(ERROR, "EvalPlanQual: t_xmin is uncommitted ?!");
1656
1657                         /*
1658                          * If tuple is being updated by other transaction then we have
1659                          * to wait for its commit/abort.
1660                          */
1661                         if (TransactionIdIsValid(xwait))
1662                         {
1663                                 ReleaseBuffer(buffer);
1664                                 XactLockTableWait(xwait);
1665                                 continue;
1666                         }
1667
1668                         /*
1669                          * We got tuple - now copy it for use by recheck query.
1670                          */
1671                         copyTuple = heap_copytuple(&tuple);
1672                         ReleaseBuffer(buffer);
1673                         break;
1674                 }
1675
1676                 /*
1677                  * Oops! Invalid tuple. Have to check is it updated or deleted.
1678                  * Note that it's possible to get invalid SnapshotDirty->tid if
1679                  * tuple updated by this transaction. Have we to check this ?
1680                  */
1681                 if (ItemPointerIsValid(&(SnapshotDirty->tid)) &&
1682                         !(ItemPointerEquals(&(tuple.t_self), &(SnapshotDirty->tid))))
1683                 {
1684                         /* updated, so look at the updated copy */
1685                         tuple.t_self = SnapshotDirty->tid;
1686                         continue;
1687                 }
1688
1689                 /*
1690                  * Deleted or updated by this transaction; forget it.
1691                  */
1692                 return NULL;
1693         }
1694
1695         /*
1696          * For UPDATE/DELETE we have to return tid of actual row we're
1697          * executing PQ for.
1698          */
1699         *tid = tuple.t_self;
1700
1701         /*
1702          * Need to run a recheck subquery.      Find or create a PQ stack entry.
1703          */
1704         epq = (evalPlanQual *) estate->es_evalPlanQual;
1705         rtsize = length(estate->es_range_table);
1706         endNode = true;
1707
1708         if (epq != NULL && epq->rti == 0)
1709         {
1710                 /* Top PQ stack entry is idle, so re-use it */
1711                 Assert(!(estate->es_useEvalPlan) &&
1712                            epq->estate.es_evalPlanQual == NULL);
1713                 epq->rti = rti;
1714                 endNode = false;
1715         }
1716
1717         /*
1718          * If this is request for another RTE - Ra, - then we have to check
1719          * wasn't PlanQual requested for Ra already and if so then Ra' row was
1720          * updated again and we have to re-start old execution for Ra and
1721          * forget all what we done after Ra was suspended. Cool? -:))
1722          */
1723         if (epq != NULL && epq->rti != rti &&
1724                 epq->estate.es_evTuple[rti - 1] != NULL)
1725         {
1726                 do
1727                 {
1728                         evalPlanQual *oldepq;
1729
1730                         /* pop previous PlanQual from the stack */
1731                         epqstate = &(epq->estate);
1732                         oldepq = (evalPlanQual *) epqstate->es_evalPlanQual;
1733                         Assert(oldepq->rti != 0);
1734                         /* stop execution */
1735                         ExecEndNode(epq->plan, NULL);
1736                         ExecDropTupleTable(epqstate->es_tupleTable, true);
1737                         epqstate->es_tupleTable = NULL;
1738                         heap_freetuple(epqstate->es_evTuple[epq->rti - 1]);
1739                         epqstate->es_evTuple[epq->rti - 1] = NULL;
1740                         /* push current PQ to freePQ stack */
1741                         oldepq->free = epq;
1742                         epq = oldepq;
1743                         estate->es_evalPlanQual = (Pointer) epq;
1744                 } while (epq->rti != rti);
1745         }
1746
1747         /*
1748          * If we are requested for another RTE then we have to suspend
1749          * execution of current PlanQual and start execution for new one.
1750          */
1751         if (epq == NULL || epq->rti != rti)
1752         {
1753                 /* try to reuse plan used previously */
1754                 evalPlanQual *newepq = (epq != NULL) ? epq->free : NULL;
1755
1756                 if (newepq == NULL)             /* first call or freePQ stack is empty */
1757                 {
1758                         newepq = (evalPlanQual *) palloc(sizeof(evalPlanQual));
1759                         newepq->free = NULL;
1760
1761                         /*
1762                          * Each stack level has its own copy of the plan tree.  This
1763                          * is wasteful, but necessary as long as plan nodes point to
1764                          * exec state nodes rather than vice versa.  Note that
1765                          * copyfuncs.c doesn't attempt to copy the exec state nodes,
1766                          * which is a good thing in this situation.
1767                          */
1768                         newepq->plan = copyObject(estate->es_origPlan);
1769
1770                         /*
1771                          * Init stack level's EState.  We share top level's copy of
1772                          * es_result_relations array and other non-changing status. We
1773                          * need our own tupletable, es_param_exec_vals, and other
1774                          * changeable state.
1775                          */
1776                         epqstate = &(newepq->estate);
1777                         memcpy(epqstate, estate, sizeof(EState));
1778                         epqstate->es_direction = ForwardScanDirection;
1779                         if (estate->es_origPlan->nParamExec > 0)
1780                                 epqstate->es_param_exec_vals = (ParamExecData *)
1781                                         palloc(estate->es_origPlan->nParamExec *
1782                                                    sizeof(ParamExecData));
1783                         epqstate->es_tupleTable = NULL;
1784                         epqstate->es_per_tuple_exprcontext = NULL;
1785
1786                         /*
1787                          * Each epqstate must have its own es_evTupleNull state, but
1788                          * all the stack entries share es_evTuple state.  This allows
1789                          * sub-rechecks to inherit the value being examined by an
1790                          * outer recheck.
1791                          */
1792                         epqstate->es_evTupleNull = (bool *) palloc(rtsize * sizeof(bool));
1793                         if (epq == NULL)
1794                         {
1795                                 /* first PQ stack entry */
1796                                 epqstate->es_evTuple = (HeapTuple *)
1797                                         palloc(rtsize * sizeof(HeapTuple));
1798                                 memset(epqstate->es_evTuple, 0, rtsize * sizeof(HeapTuple));
1799                         }
1800                         else
1801                         {
1802                                 /* later stack entries share the same storage */
1803                                 epqstate->es_evTuple = epq->estate.es_evTuple;
1804                         }
1805                 }
1806                 else
1807                 {
1808                         /* recycle previously used EState */
1809                         epqstate = &(newepq->estate);
1810                 }
1811                 /* push current PQ to the stack */
1812                 epqstate->es_evalPlanQual = (Pointer) epq;
1813                 epq = newepq;
1814                 estate->es_evalPlanQual = (Pointer) epq;
1815                 epq->rti = rti;
1816                 endNode = false;
1817         }
1818
1819         Assert(epq->rti == rti);
1820         epqstate = &(epq->estate);
1821
1822         /*
1823          * Ok - we're requested for the same RTE.  Unfortunately we still have
1824          * to end and restart execution of the plan, because ExecReScan
1825          * wouldn't ensure that upper plan nodes would reset themselves.  We
1826          * could make that work if insertion of the target tuple were
1827          * integrated with the Param mechanism somehow, so that the upper plan
1828          * nodes know that their children's outputs have changed.
1829          */
1830         if (endNode)
1831         {
1832                 /* stop execution */
1833                 ExecEndNode(epq->plan, NULL);
1834                 ExecDropTupleTable(epqstate->es_tupleTable, true);
1835                 epqstate->es_tupleTable = NULL;
1836         }
1837
1838         /*
1839          * free old RTE' tuple, if any, and store target tuple where
1840          * relation's scan node will see it
1841          */
1842         if (epqstate->es_evTuple[rti - 1] != NULL)
1843                 heap_freetuple(epqstate->es_evTuple[rti - 1]);
1844         epqstate->es_evTuple[rti - 1] = copyTuple;
1845
1846         /*
1847          * Initialize for new recheck query; be careful to copy down state
1848          * that might have changed in top EState.
1849          */
1850         epqstate->es_result_relation_info = estate->es_result_relation_info;
1851         epqstate->es_junkFilter = estate->es_junkFilter;
1852         if (estate->es_origPlan->nParamExec > 0)
1853                 memset(epqstate->es_param_exec_vals, 0,
1854                            estate->es_origPlan->nParamExec * sizeof(ParamExecData));
1855         memset(epqstate->es_evTupleNull, false, rtsize * sizeof(bool));
1856         epqstate->es_useEvalPlan = false;
1857         Assert(epqstate->es_tupleTable == NULL);
1858         epqstate->es_tupleTable =
1859                 ExecCreateTupleTable(estate->es_tupleTable->size);
1860
1861         ExecInitNode(epq->plan, epqstate, NULL);
1862
1863         return EvalPlanQualNext(estate);
1864 }
1865
1866 static TupleTableSlot *
1867 EvalPlanQualNext(EState *estate)
1868 {
1869         evalPlanQual *epq = (evalPlanQual *) estate->es_evalPlanQual;
1870         EState     *epqstate = &(epq->estate);
1871         evalPlanQual *oldepq;
1872         TupleTableSlot *slot;
1873
1874         Assert(epq->rti != 0);
1875
1876 lpqnext:;
1877         slot = ExecProcNode(epq->plan, NULL);
1878
1879         /*
1880          * No more tuples for this PQ. Continue previous one.
1881          */
1882         if (TupIsNull(slot))
1883         {
1884                 /* stop execution */
1885                 ExecEndNode(epq->plan, NULL);
1886                 ExecDropTupleTable(epqstate->es_tupleTable, true);
1887                 epqstate->es_tupleTable = NULL;
1888                 heap_freetuple(epqstate->es_evTuple[epq->rti - 1]);
1889                 epqstate->es_evTuple[epq->rti - 1] = NULL;
1890                 /* pop old PQ from the stack */
1891                 oldepq = (evalPlanQual *) epqstate->es_evalPlanQual;
1892                 if (oldepq == (evalPlanQual *) NULL)
1893                 {
1894                         epq->rti = 0;           /* this is the first (oldest) */
1895                         estate->es_useEvalPlan = false;         /* PQ - mark as free and          */
1896                         return (NULL);          /* continue Query execution   */
1897                 }
1898                 Assert(oldepq->rti != 0);
1899                 /* push current PQ to freePQ stack */
1900                 oldepq->free = epq;
1901                 epq = oldepq;
1902                 epqstate = &(epq->estate);
1903                 estate->es_evalPlanQual = (Pointer) epq;
1904                 goto lpqnext;
1905         }
1906
1907         return (slot);
1908 }
1909
1910 static void
1911 EndEvalPlanQual(EState *estate)
1912 {
1913         evalPlanQual *epq = (evalPlanQual *) estate->es_evalPlanQual;
1914         EState     *epqstate = &(epq->estate);
1915         evalPlanQual *oldepq;
1916
1917         if (epq->rti == 0)                      /* plans already shutdowned */
1918         {
1919                 Assert(epq->estate.es_evalPlanQual == NULL);
1920                 return;
1921         }
1922
1923         for (;;)
1924         {
1925                 /* stop execution */
1926                 ExecEndNode(epq->plan, NULL);
1927                 ExecDropTupleTable(epqstate->es_tupleTable, true);
1928                 epqstate->es_tupleTable = NULL;
1929                 if (epqstate->es_evTuple[epq->rti - 1] != NULL)
1930                 {
1931                         heap_freetuple(epqstate->es_evTuple[epq->rti - 1]);
1932                         epqstate->es_evTuple[epq->rti - 1] = NULL;
1933                 }
1934                 /* pop old PQ from the stack */
1935                 oldepq = (evalPlanQual *) epqstate->es_evalPlanQual;
1936                 if (oldepq == (evalPlanQual *) NULL)
1937                 {
1938                         epq->rti = 0;           /* this is the first (oldest) */
1939                         estate->es_useEvalPlan = false;         /* PQ - mark as free */
1940                         break;
1941                 }
1942                 Assert(oldepq->rti != 0);
1943                 /* push current PQ to freePQ stack */
1944                 oldepq->free = epq;
1945                 epq = oldepq;
1946                 epqstate = &(epq->estate);
1947                 estate->es_evalPlanQual = (Pointer) epq;
1948         }
1949 }