LCOV - code coverage report
Current view: top level - src/backend/executor - execMain.c (source / functions) Hit Total Coverage
Test: PostgreSQL 17devel Lines: 802 872 92.0 %
Date: 2024-04-26 10:11:36 Functions: 42 42 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*-------------------------------------------------------------------------
       2             :  *
       3             :  * execMain.c
       4             :  *    top level executor interface routines
       5             :  *
       6             :  * INTERFACE ROUTINES
       7             :  *  ExecutorStart()
       8             :  *  ExecutorRun()
       9             :  *  ExecutorFinish()
      10             :  *  ExecutorEnd()
      11             :  *
      12             :  *  These four procedures are the external interface to the executor.
      13             :  *  In each case, the query descriptor is required as an argument.
      14             :  *
      15             :  *  ExecutorStart must be called at the beginning of execution of any
      16             :  *  query plan and ExecutorEnd must always be called at the end of
      17             :  *  execution of a plan (unless it is aborted due to error).
      18             :  *
      19             :  *  ExecutorRun accepts direction and count arguments that specify whether
      20             :  *  the plan is to be executed forwards, backwards, and for how many tuples.
      21             :  *  In some cases ExecutorRun may be called multiple times to process all
      22             :  *  the tuples for a plan.  It is also acceptable to stop short of executing
      23             :  *  the whole plan (but only if it is a SELECT).
      24             :  *
      25             :  *  ExecutorFinish must be called after the final ExecutorRun call and
      26             :  *  before ExecutorEnd.  This can be omitted only in case of EXPLAIN,
      27             :  *  which should also omit ExecutorRun.
      28             :  *
      29             :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
      30             :  * Portions Copyright (c) 1994, Regents of the University of California
      31             :  *
      32             :  *
      33             :  * IDENTIFICATION
      34             :  *    src/backend/executor/execMain.c
      35             :  *
      36             :  *-------------------------------------------------------------------------
      37             :  */
      38             : #include "postgres.h"
      39             : 
      40             : #include "access/sysattr.h"
      41             : #include "access/table.h"
      42             : #include "access/tableam.h"
      43             : #include "access/xact.h"
      44             : #include "catalog/namespace.h"
      45             : #include "catalog/partition.h"
      46             : #include "commands/matview.h"
      47             : #include "commands/trigger.h"
      48             : #include "executor/executor.h"
      49             : #include "executor/nodeSubplan.h"
      50             : #include "foreign/fdwapi.h"
      51             : #include "mb/pg_wchar.h"
      52             : #include "miscadmin.h"
      53             : #include "parser/parse_relation.h"
      54             : #include "rewrite/rewriteHandler.h"
      55             : #include "tcop/utility.h"
      56             : #include "utils/acl.h"
      57             : #include "utils/backend_status.h"
      58             : #include "utils/lsyscache.h"
      59             : #include "utils/partcache.h"
      60             : #include "utils/rls.h"
      61             : #include "utils/snapmgr.h"
      62             : 
      63             : 
      64             : /* Hooks for plugins to get control in ExecutorStart/Run/Finish/End */
      65             : ExecutorStart_hook_type ExecutorStart_hook = NULL;
      66             : ExecutorRun_hook_type ExecutorRun_hook = NULL;
      67             : ExecutorFinish_hook_type ExecutorFinish_hook = NULL;
      68             : ExecutorEnd_hook_type ExecutorEnd_hook = NULL;
      69             : 
      70             : /* Hook for plugin to get control in ExecCheckPermissions() */
      71             : ExecutorCheckPerms_hook_type ExecutorCheckPerms_hook = NULL;
      72             : 
      73             : /* decls for local routines only used within this module */
      74             : static void InitPlan(QueryDesc *queryDesc, int eflags);
      75             : static void CheckValidRowMarkRel(Relation rel, RowMarkType markType);
      76             : static void ExecPostprocessPlan(EState *estate);
      77             : static void ExecEndPlan(PlanState *planstate, EState *estate);
      78             : static void ExecutePlan(EState *estate, PlanState *planstate,
      79             :                         bool use_parallel_mode,
      80             :                         CmdType operation,
      81             :                         bool sendTuples,
      82             :                         uint64 numberTuples,
      83             :                         ScanDirection direction,
      84             :                         DestReceiver *dest,
      85             :                         bool execute_once);
      86             : static bool ExecCheckOneRelPerms(RTEPermissionInfo *perminfo);
      87             : static bool ExecCheckPermissionsModified(Oid relOid, Oid userid,
      88             :                                          Bitmapset *modifiedCols,
      89             :                                          AclMode requiredPerms);
      90             : static void ExecCheckXactReadOnly(PlannedStmt *plannedstmt);
      91             : static char *ExecBuildSlotValueDescription(Oid reloid,
      92             :                                            TupleTableSlot *slot,
      93             :                                            TupleDesc tupdesc,
      94             :                                            Bitmapset *modifiedCols,
      95             :                                            int maxfieldlen);
      96             : static void EvalPlanQualStart(EPQState *epqstate, Plan *planTree);
      97             : 
      98             : /* end of local decls */
      99             : 
     100             : 
     101             : /* ----------------------------------------------------------------
     102             :  *      ExecutorStart
     103             :  *
     104             :  *      This routine must be called at the beginning of any execution of any
     105             :  *      query plan
     106             :  *
     107             :  * Takes a QueryDesc previously created by CreateQueryDesc (which is separate
     108             :  * only because some places use QueryDescs for utility commands).  The tupDesc
     109             :  * field of the QueryDesc is filled in to describe the tuples that will be
     110             :  * returned, and the internal fields (estate and planstate) are set up.
     111             :  *
     112             :  * eflags contains flag bits as described in executor.h.
     113             :  *
     114             :  * NB: the CurrentMemoryContext when this is called will become the parent
     115             :  * of the per-query context used for this Executor invocation.
     116             :  *
     117             :  * We provide a function hook variable that lets loadable plugins
     118             :  * get control when ExecutorStart is called.  Such a plugin would
     119             :  * normally call standard_ExecutorStart().
     120             :  *
     121             :  * ----------------------------------------------------------------
     122             :  */
     123             : void
     124      602344 : ExecutorStart(QueryDesc *queryDesc, int eflags)
     125             : {
     126             :     /*
     127             :      * In some cases (e.g. an EXECUTE statement) a query execution will skip
     128             :      * parse analysis, which means that the query_id won't be reported.  Note
     129             :      * that it's harmless to report the query_id multiple times, as the call
     130             :      * will be ignored if the top level query_id has already been reported.
     131             :      */
     132      602344 :     pgstat_report_query_id(queryDesc->plannedstmt->queryId, false);
     133             : 
     134      602344 :     if (ExecutorStart_hook)
     135       94750 :         (*ExecutorStart_hook) (queryDesc, eflags);
     136             :     else
     137      507594 :         standard_ExecutorStart(queryDesc, eflags);
     138      600424 : }
     139             : 
     140             : void
     141      602344 : standard_ExecutorStart(QueryDesc *queryDesc, int eflags)
     142             : {
     143             :     EState     *estate;
     144             :     MemoryContext oldcontext;
     145             : 
     146             :     /* sanity checks: queryDesc must not be started already */
     147             :     Assert(queryDesc != NULL);
     148             :     Assert(queryDesc->estate == NULL);
     149             : 
     150             :     /* caller must ensure the query's snapshot is active */
     151             :     Assert(GetActiveSnapshot() == queryDesc->snapshot);
     152             : 
     153             :     /*
     154             :      * If the transaction is read-only, we need to check if any writes are
     155             :      * planned to non-temporary tables.  EXPLAIN is considered read-only.
     156             :      *
     157             :      * Don't allow writes in parallel mode.  Supporting UPDATE and DELETE
     158             :      * would require (a) storing the combo CID hash in shared memory, rather
     159             :      * than synchronizing it just once at the start of parallelism, and (b) an
     160             :      * alternative to heap_update()'s reliance on xmax for mutual exclusion.
     161             :      * INSERT may have no such troubles, but we forbid it to simplify the
     162             :      * checks.
     163             :      *
     164             :      * We have lower-level defenses in CommandCounterIncrement and elsewhere
     165             :      * against performing unsafe operations in parallel mode, but this gives a
     166             :      * more user-friendly error message.
     167             :      */
     168      602344 :     if ((XactReadOnly || IsInParallelMode()) &&
     169      129504 :         !(eflags & EXEC_FLAG_EXPLAIN_ONLY))
     170      129504 :         ExecCheckXactReadOnly(queryDesc->plannedstmt);
     171             : 
     172             :     /*
     173             :      * Build EState, switch into per-query memory context for startup.
     174             :      */
     175      602328 :     estate = CreateExecutorState();
     176      602328 :     queryDesc->estate = estate;
     177             : 
     178      602328 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
     179             : 
     180             :     /*
     181             :      * Fill in external parameters, if any, from queryDesc; and allocate
     182             :      * workspace for internal parameters
     183             :      */
     184      602328 :     estate->es_param_list_info = queryDesc->params;
     185             : 
     186      602328 :     if (queryDesc->plannedstmt->paramExecTypes != NIL)
     187             :     {
     188             :         int         nParamExec;
     189             : 
     190      179632 :         nParamExec = list_length(queryDesc->plannedstmt->paramExecTypes);
     191      179632 :         estate->es_param_exec_vals = (ParamExecData *)
     192      179632 :             palloc0(nParamExec * sizeof(ParamExecData));
     193             :     }
     194             : 
     195             :     /* We now require all callers to provide sourceText */
     196             :     Assert(queryDesc->sourceText != NULL);
     197      602328 :     estate->es_sourceText = queryDesc->sourceText;
     198             : 
     199             :     /*
     200             :      * Fill in the query environment, if any, from queryDesc.
     201             :      */
     202      602328 :     estate->es_queryEnv = queryDesc->queryEnv;
     203             : 
     204             :     /*
     205             :      * If non-read-only query, set the command ID to mark output tuples with
     206             :      */
     207      602328 :     switch (queryDesc->operation)
     208             :     {
     209      483402 :         case CMD_SELECT:
     210             : 
     211             :             /*
     212             :              * SELECT FOR [KEY] UPDATE/SHARE and modifying CTEs need to mark
     213             :              * tuples
     214             :              */
     215      483402 :             if (queryDesc->plannedstmt->rowMarks != NIL ||
     216      475420 :                 queryDesc->plannedstmt->hasModifyingCTE)
     217        8116 :                 estate->es_output_cid = GetCurrentCommandId(true);
     218             : 
     219             :             /*
     220             :              * A SELECT without modifying CTEs can't possibly queue triggers,
     221             :              * so force skip-triggers mode. This is just a marginal efficiency
     222             :              * hack, since AfterTriggerBeginQuery/AfterTriggerEndQuery aren't
     223             :              * all that expensive, but we might as well do it.
     224             :              */
     225      483402 :             if (!queryDesc->plannedstmt->hasModifyingCTE)
     226      483262 :                 eflags |= EXEC_FLAG_SKIP_TRIGGERS;
     227      483402 :             break;
     228             : 
     229      118926 :         case CMD_INSERT:
     230             :         case CMD_DELETE:
     231             :         case CMD_UPDATE:
     232             :         case CMD_MERGE:
     233      118926 :             estate->es_output_cid = GetCurrentCommandId(true);
     234      118926 :             break;
     235             : 
     236           0 :         default:
     237           0 :             elog(ERROR, "unrecognized operation code: %d",
     238             :                  (int) queryDesc->operation);
     239             :             break;
     240             :     }
     241             : 
     242             :     /*
     243             :      * Copy other important information into the EState
     244             :      */
     245      602328 :     estate->es_snapshot = RegisterSnapshot(queryDesc->snapshot);
     246      602328 :     estate->es_crosscheck_snapshot = RegisterSnapshot(queryDesc->crosscheck_snapshot);
     247      602328 :     estate->es_top_eflags = eflags;
     248      602328 :     estate->es_instrument = queryDesc->instrument_options;
     249      602328 :     estate->es_jit_flags = queryDesc->plannedstmt->jitFlags;
     250             : 
     251             :     /*
     252             :      * Set up an AFTER-trigger statement context, unless told not to, or
     253             :      * unless it's EXPLAIN-only mode (when ExecutorFinish won't be called).
     254             :      */
     255      602328 :     if (!(eflags & (EXEC_FLAG_SKIP_TRIGGERS | EXEC_FLAG_EXPLAIN_ONLY)))
     256      117620 :         AfterTriggerBeginQuery();
     257             : 
     258             :     /*
     259             :      * Initialize the plan state tree
     260             :      */
     261      602328 :     InitPlan(queryDesc, eflags);
     262             : 
     263      600424 :     MemoryContextSwitchTo(oldcontext);
     264      600424 : }
     265             : 
     266             : /* ----------------------------------------------------------------
     267             :  *      ExecutorRun
     268             :  *
     269             :  *      This is the main routine of the executor module. It accepts
     270             :  *      the query descriptor from the traffic cop and executes the
     271             :  *      query plan.
     272             :  *
     273             :  *      ExecutorStart must have been called already.
     274             :  *
     275             :  *      If direction is NoMovementScanDirection then nothing is done
     276             :  *      except to start up/shut down the destination.  Otherwise,
     277             :  *      we retrieve up to 'count' tuples in the specified direction.
     278             :  *
     279             :  *      Note: count = 0 is interpreted as no portal limit, i.e., run to
     280             :  *      completion.  Also note that the count limit is only applied to
     281             :  *      retrieved tuples, not for instance to those inserted/updated/deleted
     282             :  *      by a ModifyTable plan node.
     283             :  *
     284             :  *      There is no return value, but output tuples (if any) are sent to
     285             :  *      the destination receiver specified in the QueryDesc; and the number
     286             :  *      of tuples processed at the top level can be found in
     287             :  *      estate->es_processed.  The total number of tuples processed in all
     288             :  *      the ExecutorRun calls can be found in estate->es_total_processed.
     289             :  *
     290             :  *      We provide a function hook variable that lets loadable plugins
     291             :  *      get control when ExecutorRun is called.  Such a plugin would
     292             :  *      normally call standard_ExecutorRun().
     293             :  *
     294             :  * ----------------------------------------------------------------
     295             :  */
     296             : void
     297      593816 : ExecutorRun(QueryDesc *queryDesc,
     298             :             ScanDirection direction, uint64 count,
     299             :             bool execute_once)
     300             : {
     301      593816 :     if (ExecutorRun_hook)
     302       92150 :         (*ExecutorRun_hook) (queryDesc, direction, count, execute_once);
     303             :     else
     304      501666 :         standard_ExecutorRun(queryDesc, direction, count, execute_once);
     305      570412 : }
     306             : 
     307             : void
     308      593816 : standard_ExecutorRun(QueryDesc *queryDesc,
     309             :                      ScanDirection direction, uint64 count, bool execute_once)
     310             : {
     311             :     EState     *estate;
     312             :     CmdType     operation;
     313             :     DestReceiver *dest;
     314             :     bool        sendTuples;
     315             :     MemoryContext oldcontext;
     316             : 
     317             :     /* sanity checks */
     318             :     Assert(queryDesc != NULL);
     319             : 
     320      593816 :     estate = queryDesc->estate;
     321             : 
     322             :     Assert(estate != NULL);
     323             :     Assert(!(estate->es_top_eflags & EXEC_FLAG_EXPLAIN_ONLY));
     324             : 
     325             :     /* caller must ensure the query's snapshot is active */
     326             :     Assert(GetActiveSnapshot() == estate->es_snapshot);
     327             : 
     328             :     /*
     329             :      * Switch into per-query memory context
     330             :      */
     331      593816 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
     332             : 
     333             :     /* Allow instrumentation of Executor overall runtime */
     334      593816 :     if (queryDesc->totaltime)
     335       59016 :         InstrStartNode(queryDesc->totaltime);
     336             : 
     337             :     /*
     338             :      * extract information from the query descriptor and the query feature.
     339             :      */
     340      593816 :     operation = queryDesc->operation;
     341      593816 :     dest = queryDesc->dest;
     342             : 
     343             :     /*
     344             :      * startup tuple receiver, if we will be emitting tuples
     345             :      */
     346      593816 :     estate->es_processed = 0;
     347             : 
     348      710708 :     sendTuples = (operation == CMD_SELECT ||
     349      116892 :                   queryDesc->plannedstmt->hasReturning);
     350             : 
     351      593816 :     if (sendTuples)
     352      480718 :         dest->rStartup(dest, operation, queryDesc->tupDesc);
     353             : 
     354             :     /*
     355             :      * run plan
     356             :      */
     357      593774 :     if (!ScanDirectionIsNoMovement(direction))
     358             :     {
     359      592560 :         if (execute_once && queryDesc->already_executed)
     360           0 :             elog(ERROR, "can't re-execute query flagged for single execution");
     361      592560 :         queryDesc->already_executed = true;
     362             : 
     363      592560 :         ExecutePlan(estate,
     364             :                     queryDesc->planstate,
     365      592560 :                     queryDesc->plannedstmt->parallelModeNeeded,
     366             :                     operation,
     367             :                     sendTuples,
     368             :                     count,
     369             :                     direction,
     370             :                     dest,
     371             :                     execute_once);
     372             :     }
     373             : 
     374             :     /*
     375             :      * Update es_total_processed to keep track of the number of tuples
     376             :      * processed across multiple ExecutorRun() calls.
     377             :      */
     378      570412 :     estate->es_total_processed += estate->es_processed;
     379             : 
     380             :     /*
     381             :      * shutdown tuple receiver, if we started it
     382             :      */
     383      570412 :     if (sendTuples)
     384      460206 :         dest->rShutdown(dest);
     385             : 
     386      570412 :     if (queryDesc->totaltime)
     387       56558 :         InstrStopNode(queryDesc->totaltime, estate->es_processed);
     388             : 
     389      570412 :     MemoryContextSwitchTo(oldcontext);
     390      570412 : }
     391             : 
     392             : /* ----------------------------------------------------------------
     393             :  *      ExecutorFinish
     394             :  *
     395             :  *      This routine must be called after the last ExecutorRun call.
     396             :  *      It performs cleanup such as firing AFTER triggers.  It is
     397             :  *      separate from ExecutorEnd because EXPLAIN ANALYZE needs to
     398             :  *      include these actions in the total runtime.
     399             :  *
     400             :  *      We provide a function hook variable that lets loadable plugins
     401             :  *      get control when ExecutorFinish is called.  Such a plugin would
     402             :  *      normally call standard_ExecutorFinish().
     403             :  *
     404             :  * ----------------------------------------------------------------
     405             :  */
     406             : void
     407      557918 : ExecutorFinish(QueryDesc *queryDesc)
     408             : {
     409      557918 :     if (ExecutorFinish_hook)
     410       82112 :         (*ExecutorFinish_hook) (queryDesc);
     411             :     else
     412      475806 :         standard_ExecutorFinish(queryDesc);
     413      556870 : }
     414             : 
     415             : void
     416      557918 : standard_ExecutorFinish(QueryDesc *queryDesc)
     417             : {
     418             :     EState     *estate;
     419             :     MemoryContext oldcontext;
     420             : 
     421             :     /* sanity checks */
     422             :     Assert(queryDesc != NULL);
     423             : 
     424      557918 :     estate = queryDesc->estate;
     425             : 
     426             :     Assert(estate != NULL);
     427             :     Assert(!(estate->es_top_eflags & EXEC_FLAG_EXPLAIN_ONLY));
     428             : 
     429             :     /* This should be run once and only once per Executor instance */
     430             :     Assert(!estate->es_finished);
     431             : 
     432             :     /* Switch into per-query memory context */
     433      557918 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
     434             : 
     435             :     /* Allow instrumentation of Executor overall runtime */
     436      557918 :     if (queryDesc->totaltime)
     437       56558 :         InstrStartNode(queryDesc->totaltime);
     438             : 
     439             :     /* Run ModifyTable nodes to completion */
     440      557918 :     ExecPostprocessPlan(estate);
     441             : 
     442             :     /* Execute queued AFTER triggers, unless told not to */
     443      557918 :     if (!(estate->es_top_eflags & EXEC_FLAG_SKIP_TRIGGERS))
     444      113392 :         AfterTriggerEndQuery(estate);
     445             : 
     446      556870 :     if (queryDesc->totaltime)
     447       56250 :         InstrStopNode(queryDesc->totaltime, 0);
     448             : 
     449      556870 :     MemoryContextSwitchTo(oldcontext);
     450             : 
     451      556870 :     estate->es_finished = true;
     452      556870 : }
     453             : 
     454             : /* ----------------------------------------------------------------
     455             :  *      ExecutorEnd
     456             :  *
     457             :  *      This routine must be called at the end of execution of any
     458             :  *      query plan
     459             :  *
     460             :  *      We provide a function hook variable that lets loadable plugins
     461             :  *      get control when ExecutorEnd is called.  Such a plugin would
     462             :  *      normally call standard_ExecutorEnd().
     463             :  *
     464             :  * ----------------------------------------------------------------
     465             :  */
     466             : void
     467      575658 : ExecutorEnd(QueryDesc *queryDesc)
     468             : {
     469      575658 :     if (ExecutorEnd_hook)
     470       86956 :         (*ExecutorEnd_hook) (queryDesc);
     471             :     else
     472      488702 :         standard_ExecutorEnd(queryDesc);
     473      575658 : }
     474             : 
     475             : void
     476      575658 : standard_ExecutorEnd(QueryDesc *queryDesc)
     477             : {
     478             :     EState     *estate;
     479             :     MemoryContext oldcontext;
     480             : 
     481             :     /* sanity checks */
     482             :     Assert(queryDesc != NULL);
     483             : 
     484      575658 :     estate = queryDesc->estate;
     485             : 
     486             :     Assert(estate != NULL);
     487             : 
     488             :     /*
     489             :      * Check that ExecutorFinish was called, unless in EXPLAIN-only mode. This
     490             :      * Assert is needed because ExecutorFinish is new as of 9.1, and callers
     491             :      * might forget to call it.
     492             :      */
     493             :     Assert(estate->es_finished ||
     494             :            (estate->es_top_eflags & EXEC_FLAG_EXPLAIN_ONLY));
     495             : 
     496             :     /*
     497             :      * Switch into per-query memory context to run ExecEndPlan
     498             :      */
     499      575658 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
     500             : 
     501      575658 :     ExecEndPlan(queryDesc->planstate, estate);
     502             : 
     503             :     /* do away with our snapshots */
     504      575658 :     UnregisterSnapshot(estate->es_snapshot);
     505      575658 :     UnregisterSnapshot(estate->es_crosscheck_snapshot);
     506             : 
     507             :     /*
     508             :      * Must switch out of context before destroying it
     509             :      */
     510      575658 :     MemoryContextSwitchTo(oldcontext);
     511             : 
     512             :     /*
     513             :      * Release EState and per-query memory context.  This should release
     514             :      * everything the executor has allocated.
     515             :      */
     516      575658 :     FreeExecutorState(estate);
     517             : 
     518             :     /* Reset queryDesc fields that no longer point to anything */
     519      575658 :     queryDesc->tupDesc = NULL;
     520      575658 :     queryDesc->estate = NULL;
     521      575658 :     queryDesc->planstate = NULL;
     522      575658 :     queryDesc->totaltime = NULL;
     523      575658 : }
     524             : 
     525             : /* ----------------------------------------------------------------
     526             :  *      ExecutorRewind
     527             :  *
     528             :  *      This routine may be called on an open queryDesc to rewind it
     529             :  *      to the start.
     530             :  * ----------------------------------------------------------------
     531             :  */
     532             : void
     533         140 : ExecutorRewind(QueryDesc *queryDesc)
     534             : {
     535             :     EState     *estate;
     536             :     MemoryContext oldcontext;
     537             : 
     538             :     /* sanity checks */
     539             :     Assert(queryDesc != NULL);
     540             : 
     541         140 :     estate = queryDesc->estate;
     542             : 
     543             :     Assert(estate != NULL);
     544             : 
     545             :     /* It's probably not sensible to rescan updating queries */
     546             :     Assert(queryDesc->operation == CMD_SELECT);
     547             : 
     548             :     /*
     549             :      * Switch into per-query memory context
     550             :      */
     551         140 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
     552             : 
     553             :     /*
     554             :      * rescan plan
     555             :      */
     556         140 :     ExecReScan(queryDesc->planstate);
     557             : 
     558         140 :     MemoryContextSwitchTo(oldcontext);
     559         140 : }
     560             : 
     561             : 
     562             : /*
     563             :  * ExecCheckPermissions
     564             :  *      Check access permissions of relations mentioned in a query
     565             :  *
     566             :  * Returns true if permissions are adequate.  Otherwise, throws an appropriate
     567             :  * error if ereport_on_violation is true, or simply returns false otherwise.
     568             :  *
     569             :  * Note that this does NOT address row-level security policies (aka: RLS).  If
     570             :  * rows will be returned to the user as a result of this permission check
     571             :  * passing, then RLS also needs to be consulted (and check_enable_rls()).
     572             :  *
     573             :  * See rewrite/rowsecurity.c.
     574             :  *
     575             :  * NB: rangeTable is no longer used by us, but kept around for the hooks that
     576             :  * might still want to look at the RTEs.
     577             :  */
     578             : bool
     579      612260 : ExecCheckPermissions(List *rangeTable, List *rteperminfos,
     580             :                      bool ereport_on_violation)
     581             : {
     582             :     ListCell   *l;
     583      612260 :     bool        result = true;
     584             : 
     585             : #ifdef USE_ASSERT_CHECKING
     586             :     Bitmapset  *indexset = NULL;
     587             : 
     588             :     /* Check that rteperminfos is consistent with rangeTable */
     589             :     foreach(l, rangeTable)
     590             :     {
     591             :         RangeTblEntry *rte = lfirst_node(RangeTblEntry, l);
     592             : 
     593             :         if (rte->perminfoindex != 0)
     594             :         {
     595             :             /* Sanity checks */
     596             : 
     597             :             /*
     598             :              * Only relation RTEs and subquery RTEs that were once relation
     599             :              * RTEs (views) have their perminfoindex set.
     600             :              */
     601             :             Assert(rte->rtekind == RTE_RELATION ||
     602             :                    (rte->rtekind == RTE_SUBQUERY &&
     603             :                     rte->relkind == RELKIND_VIEW));
     604             : 
     605             :             (void) getRTEPermissionInfo(rteperminfos, rte);
     606             :             /* Many-to-one mapping not allowed */
     607             :             Assert(!bms_is_member(rte->perminfoindex, indexset));
     608             :             indexset = bms_add_member(indexset, rte->perminfoindex);
     609             :         }
     610             :     }
     611             : 
     612             :     /* All rteperminfos are referenced */
     613             :     Assert(bms_num_members(indexset) == list_length(rteperminfos));
     614             : #endif
     615             : 
     616     1112194 :     foreach(l, rteperminfos)
     617             :     {
     618      501548 :         RTEPermissionInfo *perminfo = lfirst_node(RTEPermissionInfo, l);
     619             : 
     620             :         Assert(OidIsValid(perminfo->relid));
     621      501548 :         result = ExecCheckOneRelPerms(perminfo);
     622      501548 :         if (!result)
     623             :         {
     624        1614 :             if (ereport_on_violation)
     625        1602 :                 aclcheck_error(ACLCHECK_NO_PRIV,
     626        1602 :                                get_relkind_objtype(get_rel_relkind(perminfo->relid)),
     627        1602 :                                get_rel_name(perminfo->relid));
     628          12 :             return false;
     629             :         }
     630             :     }
     631             : 
     632      610646 :     if (ExecutorCheckPerms_hook)
     633          12 :         result = (*ExecutorCheckPerms_hook) (rangeTable, rteperminfos,
     634             :                                              ereport_on_violation);
     635      610646 :     return result;
     636             : }
     637             : 
     638             : /*
     639             :  * ExecCheckOneRelPerms
     640             :  *      Check access permissions for a single relation.
     641             :  */
     642             : static bool
     643      501548 : ExecCheckOneRelPerms(RTEPermissionInfo *perminfo)
     644             : {
     645             :     AclMode     requiredPerms;
     646             :     AclMode     relPerms;
     647             :     AclMode     remainingPerms;
     648             :     Oid         userid;
     649      501548 :     Oid         relOid = perminfo->relid;
     650             : 
     651      501548 :     requiredPerms = perminfo->requiredPerms;
     652             :     Assert(requiredPerms != 0);
     653             : 
     654             :     /*
     655             :      * userid to check as: current user unless we have a setuid indication.
     656             :      *
     657             :      * Note: GetUserId() is presently fast enough that there's no harm in
     658             :      * calling it separately for each relation.  If that stops being true, we
     659             :      * could call it once in ExecCheckPermissions and pass the userid down
     660             :      * from there.  But for now, no need for the extra clutter.
     661             :      */
     662     1003096 :     userid = OidIsValid(perminfo->checkAsUser) ?
     663      501548 :         perminfo->checkAsUser : GetUserId();
     664             : 
     665             :     /*
     666             :      * We must have *all* the requiredPerms bits, but some of the bits can be
     667             :      * satisfied from column-level rather than relation-level permissions.
     668             :      * First, remove any bits that are satisfied by relation permissions.
     669             :      */
     670      501548 :     relPerms = pg_class_aclmask(relOid, userid, requiredPerms, ACLMASK_ALL);
     671      501548 :     remainingPerms = requiredPerms & ~relPerms;
     672      501548 :     if (remainingPerms != 0)
     673             :     {
     674        2516 :         int         col = -1;
     675             : 
     676             :         /*
     677             :          * If we lack any permissions that exist only as relation permissions,
     678             :          * we can fail straight away.
     679             :          */
     680        2516 :         if (remainingPerms & ~(ACL_SELECT | ACL_INSERT | ACL_UPDATE))
     681         150 :             return false;
     682             : 
     683             :         /*
     684             :          * Check to see if we have the needed privileges at column level.
     685             :          *
     686             :          * Note: failures just report a table-level error; it would be nicer
     687             :          * to report a column-level error if we have some but not all of the
     688             :          * column privileges.
     689             :          */
     690        2366 :         if (remainingPerms & ACL_SELECT)
     691             :         {
     692             :             /*
     693             :              * When the query doesn't explicitly reference any columns (for
     694             :              * example, SELECT COUNT(*) FROM table), allow the query if we
     695             :              * have SELECT on any column of the rel, as per SQL spec.
     696             :              */
     697        1398 :             if (bms_is_empty(perminfo->selectedCols))
     698             :             {
     699          54 :                 if (pg_attribute_aclcheck_all(relOid, userid, ACL_SELECT,
     700             :                                               ACLMASK_ANY) != ACLCHECK_OK)
     701          12 :                     return false;
     702             :             }
     703             : 
     704        2264 :             while ((col = bms_next_member(perminfo->selectedCols, col)) >= 0)
     705             :             {
     706             :                 /* bit #s are offset by FirstLowInvalidHeapAttributeNumber */
     707        1770 :                 AttrNumber  attno = col + FirstLowInvalidHeapAttributeNumber;
     708             : 
     709        1770 :                 if (attno == InvalidAttrNumber)
     710             :                 {
     711             :                     /* Whole-row reference, must have priv on all cols */
     712          54 :                     if (pg_attribute_aclcheck_all(relOid, userid, ACL_SELECT,
     713             :                                                   ACLMASK_ALL) != ACLCHECK_OK)
     714          30 :                         return false;
     715             :                 }
     716             :                 else
     717             :                 {
     718        1716 :                     if (pg_attribute_aclcheck(relOid, attno, userid,
     719             :                                               ACL_SELECT) != ACLCHECK_OK)
     720         862 :                         return false;
     721             :                 }
     722             :             }
     723             :         }
     724             : 
     725             :         /*
     726             :          * Basically the same for the mod columns, for both INSERT and UPDATE
     727             :          * privilege as specified by remainingPerms.
     728             :          */
     729        1462 :         if (remainingPerms & ACL_INSERT &&
     730         308 :             !ExecCheckPermissionsModified(relOid,
     731             :                                           userid,
     732             :                                           perminfo->insertedCols,
     733             :                                           ACL_INSERT))
     734         176 :             return false;
     735             : 
     736        1286 :         if (remainingPerms & ACL_UPDATE &&
     737         876 :             !ExecCheckPermissionsModified(relOid,
     738             :                                           userid,
     739             :                                           perminfo->updatedCols,
     740             :                                           ACL_UPDATE))
     741         384 :             return false;
     742             :     }
     743      499934 :     return true;
     744             : }
     745             : 
     746             : /*
     747             :  * ExecCheckPermissionsModified
     748             :  *      Check INSERT or UPDATE access permissions for a single relation (these
     749             :  *      are processed uniformly).
     750             :  */
     751             : static bool
     752        1184 : ExecCheckPermissionsModified(Oid relOid, Oid userid, Bitmapset *modifiedCols,
     753             :                              AclMode requiredPerms)
     754             : {
     755        1184 :     int         col = -1;
     756             : 
     757             :     /*
     758             :      * When the query doesn't explicitly update any columns, allow the query
     759             :      * if we have permission on any column of the rel.  This is to handle
     760             :      * SELECT FOR UPDATE as well as possible corner cases in UPDATE.
     761             :      */
     762        1184 :     if (bms_is_empty(modifiedCols))
     763             :     {
     764          48 :         if (pg_attribute_aclcheck_all(relOid, userid, requiredPerms,
     765             :                                       ACLMASK_ANY) != ACLCHECK_OK)
     766          48 :             return false;
     767             :     }
     768             : 
     769        1892 :     while ((col = bms_next_member(modifiedCols, col)) >= 0)
     770             :     {
     771             :         /* bit #s are offset by FirstLowInvalidHeapAttributeNumber */
     772        1268 :         AttrNumber  attno = col + FirstLowInvalidHeapAttributeNumber;
     773             : 
     774        1268 :         if (attno == InvalidAttrNumber)
     775             :         {
     776             :             /* whole-row reference can't happen here */
     777           0 :             elog(ERROR, "whole-row update is not implemented");
     778             :         }
     779             :         else
     780             :         {
     781        1268 :             if (pg_attribute_aclcheck(relOid, attno, userid,
     782             :                                       requiredPerms) != ACLCHECK_OK)
     783         512 :                 return false;
     784             :         }
     785             :     }
     786         624 :     return true;
     787             : }
     788             : 
     789             : /*
     790             :  * Check that the query does not imply any writes to non-temp tables;
     791             :  * unless we're in parallel mode, in which case don't even allow writes
     792             :  * to temp tables.
     793             :  *
     794             :  * Note: in a Hot Standby this would need to reject writes to temp
     795             :  * tables just as we do in parallel mode; but an HS standby can't have created
     796             :  * any temp tables in the first place, so no need to check that.
     797             :  */
     798             : static void
     799      129504 : ExecCheckXactReadOnly(PlannedStmt *plannedstmt)
     800             : {
     801             :     ListCell   *l;
     802             : 
     803             :     /*
     804             :      * Fail if write permissions are requested in parallel mode for table
     805             :      * (temp or non-temp), otherwise fail for any non-temp table.
     806             :      */
     807      212162 :     foreach(l, plannedstmt->permInfos)
     808             :     {
     809       82674 :         RTEPermissionInfo *perminfo = lfirst_node(RTEPermissionInfo, l);
     810             : 
     811       82674 :         if ((perminfo->requiredPerms & (~ACL_SELECT)) == 0)
     812       82646 :             continue;
     813             : 
     814          28 :         if (isTempNamespace(get_rel_namespace(perminfo->relid)))
     815          12 :             continue;
     816             : 
     817          16 :         PreventCommandIfReadOnly(CreateCommandName((Node *) plannedstmt));
     818             :     }
     819             : 
     820      129488 :     if (plannedstmt->commandType != CMD_SELECT || plannedstmt->hasModifyingCTE)
     821          12 :         PreventCommandIfParallelMode(CreateCommandName((Node *) plannedstmt));
     822      129488 : }
     823             : 
     824             : 
     825             : /* ----------------------------------------------------------------
     826             :  *      InitPlan
     827             :  *
     828             :  *      Initializes the query plan: open files, allocate storage
     829             :  *      and start up the rule manager
     830             :  * ----------------------------------------------------------------
     831             :  */
     832             : static void
     833      602328 : InitPlan(QueryDesc *queryDesc, int eflags)
     834             : {
     835      602328 :     CmdType     operation = queryDesc->operation;
     836      602328 :     PlannedStmt *plannedstmt = queryDesc->plannedstmt;
     837      602328 :     Plan       *plan = plannedstmt->planTree;
     838      602328 :     List       *rangeTable = plannedstmt->rtable;
     839      602328 :     EState     *estate = queryDesc->estate;
     840             :     PlanState  *planstate;
     841             :     TupleDesc   tupType;
     842             :     ListCell   *l;
     843             :     int         i;
     844             : 
     845             :     /*
     846             :      * Do permissions checks
     847             :      */
     848      602328 :     ExecCheckPermissions(rangeTable, plannedstmt->permInfos, true);
     849             : 
     850             :     /*
     851             :      * initialize the node's execution state
     852             :      */
     853      600810 :     ExecInitRangeTable(estate, rangeTable, plannedstmt->permInfos);
     854             : 
     855      600810 :     estate->es_plannedstmt = plannedstmt;
     856             : 
     857             :     /*
     858             :      * Next, build the ExecRowMark array from the PlanRowMark(s), if any.
     859             :      */
     860      600810 :     if (plannedstmt->rowMarks)
     861             :     {
     862        9802 :         estate->es_rowmarks = (ExecRowMark **)
     863        9802 :             palloc0(estate->es_range_table_size * sizeof(ExecRowMark *));
     864       22332 :         foreach(l, plannedstmt->rowMarks)
     865             :         {
     866       12536 :             PlanRowMark *rc = (PlanRowMark *) lfirst(l);
     867             :             Oid         relid;
     868             :             Relation    relation;
     869             :             ExecRowMark *erm;
     870             : 
     871             :             /* ignore "parent" rowmarks; they are irrelevant at runtime */
     872       12536 :             if (rc->isParent)
     873        1748 :                 continue;
     874             : 
     875             :             /* get relation's OID (will produce InvalidOid if subquery) */
     876       10788 :             relid = exec_rt_fetch(rc->rti, estate)->relid;
     877             : 
     878             :             /* open relation, if we need to access it for this mark type */
     879       10788 :             switch (rc->markType)
     880             :             {
     881       10110 :                 case ROW_MARK_EXCLUSIVE:
     882             :                 case ROW_MARK_NOKEYEXCLUSIVE:
     883             :                 case ROW_MARK_SHARE:
     884             :                 case ROW_MARK_KEYSHARE:
     885             :                 case ROW_MARK_REFERENCE:
     886       10110 :                     relation = ExecGetRangeTableRelation(estate, rc->rti);
     887       10110 :                     break;
     888         678 :                 case ROW_MARK_COPY:
     889             :                     /* no physical table access is required */
     890         678 :                     relation = NULL;
     891         678 :                     break;
     892           0 :                 default:
     893           0 :                     elog(ERROR, "unrecognized markType: %d", rc->markType);
     894             :                     relation = NULL;    /* keep compiler quiet */
     895             :                     break;
     896             :             }
     897             : 
     898             :             /* Check that relation is a legal target for marking */
     899       10788 :             if (relation)
     900       10110 :                 CheckValidRowMarkRel(relation, rc->markType);
     901             : 
     902       10782 :             erm = (ExecRowMark *) palloc(sizeof(ExecRowMark));
     903       10782 :             erm->relation = relation;
     904       10782 :             erm->relid = relid;
     905       10782 :             erm->rti = rc->rti;
     906       10782 :             erm->prti = rc->prti;
     907       10782 :             erm->rowmarkId = rc->rowmarkId;
     908       10782 :             erm->markType = rc->markType;
     909       10782 :             erm->strength = rc->strength;
     910       10782 :             erm->waitPolicy = rc->waitPolicy;
     911       10782 :             erm->ermActive = false;
     912       10782 :             ItemPointerSetInvalid(&(erm->curCtid));
     913       10782 :             erm->ermExtra = NULL;
     914             : 
     915             :             Assert(erm->rti > 0 && erm->rti <= estate->es_range_table_size &&
     916             :                    estate->es_rowmarks[erm->rti - 1] == NULL);
     917             : 
     918       10782 :             estate->es_rowmarks[erm->rti - 1] = erm;
     919             :         }
     920             :     }
     921             : 
     922             :     /*
     923             :      * Initialize the executor's tuple table to empty.
     924             :      */
     925      600804 :     estate->es_tupleTable = NIL;
     926             : 
     927             :     /* signal that this EState is not used for EPQ */
     928      600804 :     estate->es_epq_active = NULL;
     929             : 
     930             :     /*
     931             :      * Initialize private state information for each SubPlan.  We must do this
     932             :      * before running ExecInitNode on the main query tree, since
     933             :      * ExecInitSubPlan expects to be able to find these entries.
     934             :      */
     935             :     Assert(estate->es_subplanstates == NIL);
     936      600804 :     i = 1;                      /* subplan indices count from 1 */
     937      638156 :     foreach(l, plannedstmt->subplans)
     938             :     {
     939       37352 :         Plan       *subplan = (Plan *) lfirst(l);
     940             :         PlanState  *subplanstate;
     941             :         int         sp_eflags;
     942             : 
     943             :         /*
     944             :          * A subplan will never need to do BACKWARD scan nor MARK/RESTORE. If
     945             :          * it is a parameterless subplan (not initplan), we suggest that it be
     946             :          * prepared to handle REWIND efficiently; otherwise there is no need.
     947             :          */
     948       37352 :         sp_eflags = eflags
     949             :             & ~(EXEC_FLAG_REWIND | EXEC_FLAG_BACKWARD | EXEC_FLAG_MARK);
     950       37352 :         if (bms_is_member(i, plannedstmt->rewindPlanIDs))
     951          42 :             sp_eflags |= EXEC_FLAG_REWIND;
     952             : 
     953       37352 :         subplanstate = ExecInitNode(subplan, estate, sp_eflags);
     954             : 
     955       37352 :         estate->es_subplanstates = lappend(estate->es_subplanstates,
     956             :                                            subplanstate);
     957             : 
     958       37352 :         i++;
     959             :     }
     960             : 
     961             :     /*
     962             :      * Initialize the private state information for all the nodes in the query
     963             :      * tree.  This opens files, allocates storage and leaves us ready to start
     964             :      * processing tuples.
     965             :      */
     966      600804 :     planstate = ExecInitNode(plan, estate, eflags);
     967             : 
     968             :     /*
     969             :      * Get the tuple descriptor describing the type of tuples to return.
     970             :      */
     971      600424 :     tupType = ExecGetResultType(planstate);
     972             : 
     973             :     /*
     974             :      * Initialize the junk filter if needed.  SELECT queries need a filter if
     975             :      * there are any junk attrs in the top-level tlist.
     976             :      */
     977      600424 :     if (operation == CMD_SELECT)
     978             :     {
     979      482716 :         bool        junk_filter_needed = false;
     980             :         ListCell   *tlist;
     981             : 
     982     1597206 :         foreach(tlist, plan->targetlist)
     983             :         {
     984     1137536 :             TargetEntry *tle = (TargetEntry *) lfirst(tlist);
     985             : 
     986     1137536 :             if (tle->resjunk)
     987             :             {
     988       23046 :                 junk_filter_needed = true;
     989       23046 :                 break;
     990             :             }
     991             :         }
     992             : 
     993      482716 :         if (junk_filter_needed)
     994             :         {
     995             :             JunkFilter *j;
     996             :             TupleTableSlot *slot;
     997             : 
     998       23046 :             slot = ExecInitExtraTupleSlot(estate, NULL, &TTSOpsVirtual);
     999       23046 :             j = ExecInitJunkFilter(planstate->plan->targetlist,
    1000             :                                    slot);
    1001       23046 :             estate->es_junkFilter = j;
    1002             : 
    1003             :             /* Want to return the cleaned tuple type */
    1004       23046 :             tupType = j->jf_cleanTupType;
    1005             :         }
    1006             :     }
    1007             : 
    1008      600424 :     queryDesc->tupDesc = tupType;
    1009      600424 :     queryDesc->planstate = planstate;
    1010      600424 : }
    1011             : 
    1012             : /*
    1013             :  * Check that a proposed result relation is a legal target for the operation
    1014             :  *
    1015             :  * Generally the parser and/or planner should have noticed any such mistake
    1016             :  * already, but let's make sure.
    1017             :  *
    1018             :  * For MERGE, mergeActions is the list of actions that may be performed.  The
    1019             :  * result relation is required to support every action, regardless of whether
    1020             :  * or not they are all executed.
    1021             :  *
    1022             :  * Note: when changing this function, you probably also need to look at
    1023             :  * CheckValidRowMarkRel.
    1024             :  */
    1025             : void
    1026      131988 : CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation,
    1027             :                     List *mergeActions)
    1028             : {
    1029      131988 :     Relation    resultRel = resultRelInfo->ri_RelationDesc;
    1030             :     FdwRoutine *fdwroutine;
    1031             : 
    1032      131988 :     switch (resultRel->rd_rel->relkind)
    1033             :     {
    1034      130826 :         case RELKIND_RELATION:
    1035             :         case RELKIND_PARTITIONED_TABLE:
    1036      130826 :             CheckCmdReplicaIdentity(resultRel, operation);
    1037      130562 :             break;
    1038           0 :         case RELKIND_SEQUENCE:
    1039           0 :             ereport(ERROR,
    1040             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1041             :                      errmsg("cannot change sequence \"%s\"",
    1042             :                             RelationGetRelationName(resultRel))));
    1043             :             break;
    1044           0 :         case RELKIND_TOASTVALUE:
    1045           0 :             ereport(ERROR,
    1046             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1047             :                      errmsg("cannot change TOAST relation \"%s\"",
    1048             :                             RelationGetRelationName(resultRel))));
    1049             :             break;
    1050         390 :         case RELKIND_VIEW:
    1051             : 
    1052             :             /*
    1053             :              * Okay only if there's a suitable INSTEAD OF trigger.  Otherwise,
    1054             :              * complain, but omit errdetail because we haven't got the
    1055             :              * information handy (and given that it really shouldn't happen,
    1056             :              * it's not worth great exertion to get).
    1057             :              */
    1058         390 :             if (!view_has_instead_trigger(resultRel, operation, mergeActions))
    1059           0 :                 error_view_not_updatable(resultRel, operation, mergeActions,
    1060             :                                          NULL);
    1061         390 :             break;
    1062         120 :         case RELKIND_MATVIEW:
    1063         120 :             if (!MatViewIncrementalMaintenanceIsEnabled())
    1064           0 :                 ereport(ERROR,
    1065             :                         (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1066             :                          errmsg("cannot change materialized view \"%s\"",
    1067             :                                 RelationGetRelationName(resultRel))));
    1068         120 :             break;
    1069         652 :         case RELKIND_FOREIGN_TABLE:
    1070             :             /* Okay only if the FDW supports it */
    1071         652 :             fdwroutine = resultRelInfo->ri_FdwRoutine;
    1072             :             switch (operation)
    1073             :             {
    1074         304 :                 case CMD_INSERT:
    1075         304 :                     if (fdwroutine->ExecForeignInsert == NULL)
    1076          10 :                         ereport(ERROR,
    1077             :                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    1078             :                                  errmsg("cannot insert into foreign table \"%s\"",
    1079             :                                         RelationGetRelationName(resultRel))));
    1080         294 :                     if (fdwroutine->IsForeignRelUpdatable != NULL &&
    1081         294 :                         (fdwroutine->IsForeignRelUpdatable(resultRel) & (1 << CMD_INSERT)) == 0)
    1082           0 :                         ereport(ERROR,
    1083             :                                 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
    1084             :                                  errmsg("foreign table \"%s\" does not allow inserts",
    1085             :                                         RelationGetRelationName(resultRel))));
    1086         294 :                     break;
    1087         194 :                 case CMD_UPDATE:
    1088         194 :                     if (fdwroutine->ExecForeignUpdate == NULL)
    1089           4 :                         ereport(ERROR,
    1090             :                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    1091             :                                  errmsg("cannot update foreign table \"%s\"",
    1092             :                                         RelationGetRelationName(resultRel))));
    1093         190 :                     if (fdwroutine->IsForeignRelUpdatable != NULL &&
    1094         190 :                         (fdwroutine->IsForeignRelUpdatable(resultRel) & (1 << CMD_UPDATE)) == 0)
    1095           0 :                         ereport(ERROR,
    1096             :                                 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
    1097             :                                  errmsg("foreign table \"%s\" does not allow updates",
    1098             :                                         RelationGetRelationName(resultRel))));
    1099         190 :                     break;
    1100         154 :                 case CMD_DELETE:
    1101         154 :                     if (fdwroutine->ExecForeignDelete == NULL)
    1102           4 :                         ereport(ERROR,
    1103             :                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    1104             :                                  errmsg("cannot delete from foreign table \"%s\"",
    1105             :                                         RelationGetRelationName(resultRel))));
    1106         150 :                     if (fdwroutine->IsForeignRelUpdatable != NULL &&
    1107         150 :                         (fdwroutine->IsForeignRelUpdatable(resultRel) & (1 << CMD_DELETE)) == 0)
    1108           0 :                         ereport(ERROR,
    1109             :                                 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
    1110             :                                  errmsg("foreign table \"%s\" does not allow deletes",
    1111             :                                         RelationGetRelationName(resultRel))));
    1112         150 :                     break;
    1113           0 :                 default:
    1114           0 :                     elog(ERROR, "unrecognized CmdType: %d", (int) operation);
    1115             :                     break;
    1116             :             }
    1117         634 :             break;
    1118           0 :         default:
    1119           0 :             ereport(ERROR,
    1120             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1121             :                      errmsg("cannot change relation \"%s\"",
    1122             :                             RelationGetRelationName(resultRel))));
    1123             :             break;
    1124             :     }
    1125      131706 : }
    1126             : 
    1127             : /*
    1128             :  * Check that a proposed rowmark target relation is a legal target
    1129             :  *
    1130             :  * In most cases parser and/or planner should have noticed this already, but
    1131             :  * they don't cover all cases.
    1132             :  */
    1133             : static void
    1134       10110 : CheckValidRowMarkRel(Relation rel, RowMarkType markType)
    1135             : {
    1136             :     FdwRoutine *fdwroutine;
    1137             : 
    1138       10110 :     switch (rel->rd_rel->relkind)
    1139             :     {
    1140       10098 :         case RELKIND_RELATION:
    1141             :         case RELKIND_PARTITIONED_TABLE:
    1142             :             /* OK */
    1143       10098 :             break;
    1144           0 :         case RELKIND_SEQUENCE:
    1145             :             /* Must disallow this because we don't vacuum sequences */
    1146           0 :             ereport(ERROR,
    1147             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1148             :                      errmsg("cannot lock rows in sequence \"%s\"",
    1149             :                             RelationGetRelationName(rel))));
    1150             :             break;
    1151           0 :         case RELKIND_TOASTVALUE:
    1152             :             /* We could allow this, but there seems no good reason to */
    1153           0 :             ereport(ERROR,
    1154             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1155             :                      errmsg("cannot lock rows in TOAST relation \"%s\"",
    1156             :                             RelationGetRelationName(rel))));
    1157             :             break;
    1158           0 :         case RELKIND_VIEW:
    1159             :             /* Should not get here; planner should have expanded the view */
    1160           0 :             ereport(ERROR,
    1161             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1162             :                      errmsg("cannot lock rows in view \"%s\"",
    1163             :                             RelationGetRelationName(rel))));
    1164             :             break;
    1165          12 :         case RELKIND_MATVIEW:
    1166             :             /* Allow referencing a matview, but not actual locking clauses */
    1167          12 :             if (markType != ROW_MARK_REFERENCE)
    1168           6 :                 ereport(ERROR,
    1169             :                         (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1170             :                          errmsg("cannot lock rows in materialized view \"%s\"",
    1171             :                                 RelationGetRelationName(rel))));
    1172           6 :             break;
    1173           0 :         case RELKIND_FOREIGN_TABLE:
    1174             :             /* Okay only if the FDW supports it */
    1175           0 :             fdwroutine = GetFdwRoutineForRelation(rel, false);
    1176           0 :             if (fdwroutine->RefetchForeignRow == NULL)
    1177           0 :                 ereport(ERROR,
    1178             :                         (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    1179             :                          errmsg("cannot lock rows in foreign table \"%s\"",
    1180             :                                 RelationGetRelationName(rel))));
    1181           0 :             break;
    1182           0 :         default:
    1183           0 :             ereport(ERROR,
    1184             :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
    1185             :                      errmsg("cannot lock rows in relation \"%s\"",
    1186             :                             RelationGetRelationName(rel))));
    1187             :             break;
    1188             :     }
    1189       10104 : }
    1190             : 
    1191             : /*
    1192             :  * Initialize ResultRelInfo data for one result relation
    1193             :  *
    1194             :  * Caution: before Postgres 9.1, this function included the relkind checking
    1195             :  * that's now in CheckValidResultRel, and it also did ExecOpenIndices if
    1196             :  * appropriate.  Be sure callers cover those needs.
    1197             :  */
    1198             : void
    1199      436978 : InitResultRelInfo(ResultRelInfo *resultRelInfo,
    1200             :                   Relation resultRelationDesc,
    1201             :                   Index resultRelationIndex,
    1202             :                   ResultRelInfo *partition_root_rri,
    1203             :                   int instrument_options)
    1204             : {
    1205    20974944 :     MemSet(resultRelInfo, 0, sizeof(ResultRelInfo));
    1206      436978 :     resultRelInfo->type = T_ResultRelInfo;
    1207      436978 :     resultRelInfo->ri_RangeTableIndex = resultRelationIndex;
    1208      436978 :     resultRelInfo->ri_RelationDesc = resultRelationDesc;
    1209      436978 :     resultRelInfo->ri_NumIndices = 0;
    1210      436978 :     resultRelInfo->ri_IndexRelationDescs = NULL;
    1211      436978 :     resultRelInfo->ri_IndexRelationInfo = NULL;
    1212             :     /* make a copy so as not to depend on relcache info not changing... */
    1213      436978 :     resultRelInfo->ri_TrigDesc = CopyTriggerDesc(resultRelationDesc->trigdesc);
    1214      436978 :     if (resultRelInfo->ri_TrigDesc)
    1215             :     {
    1216       17232 :         int         n = resultRelInfo->ri_TrigDesc->numtriggers;
    1217             : 
    1218       17232 :         resultRelInfo->ri_TrigFunctions = (FmgrInfo *)
    1219       17232 :             palloc0(n * sizeof(FmgrInfo));
    1220       17232 :         resultRelInfo->ri_TrigWhenExprs = (ExprState **)
    1221       17232 :             palloc0(n * sizeof(ExprState *));
    1222       17232 :         if (instrument_options)
    1223           0 :             resultRelInfo->ri_TrigInstrument = InstrAlloc(n, instrument_options, false);
    1224             :     }
    1225             :     else
    1226             :     {
    1227      419746 :         resultRelInfo->ri_TrigFunctions = NULL;
    1228      419746 :         resultRelInfo->ri_TrigWhenExprs = NULL;
    1229      419746 :         resultRelInfo->ri_TrigInstrument = NULL;
    1230             :     }
    1231      436978 :     if (resultRelationDesc->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
    1232         674 :         resultRelInfo->ri_FdwRoutine = GetFdwRoutineForRelation(resultRelationDesc, true);
    1233             :     else
    1234      436304 :         resultRelInfo->ri_FdwRoutine = NULL;
    1235             : 
    1236             :     /* The following fields are set later if needed */
    1237      436978 :     resultRelInfo->ri_RowIdAttNo = 0;
    1238      436978 :     resultRelInfo->ri_extraUpdatedCols = NULL;
    1239      436978 :     resultRelInfo->ri_projectNew = NULL;
    1240      436978 :     resultRelInfo->ri_newTupleSlot = NULL;
    1241      436978 :     resultRelInfo->ri_oldTupleSlot = NULL;
    1242      436978 :     resultRelInfo->ri_projectNewInfoValid = false;
    1243      436978 :     resultRelInfo->ri_FdwState = NULL;
    1244      436978 :     resultRelInfo->ri_usesFdwDirectModify = false;
    1245      436978 :     resultRelInfo->ri_ConstraintExprs = NULL;
    1246      436978 :     resultRelInfo->ri_GeneratedExprsI = NULL;
    1247      436978 :     resultRelInfo->ri_GeneratedExprsU = NULL;
    1248      436978 :     resultRelInfo->ri_projectReturning = NULL;
    1249      436978 :     resultRelInfo->ri_onConflictArbiterIndexes = NIL;
    1250      436978 :     resultRelInfo->ri_onConflict = NULL;
    1251      436978 :     resultRelInfo->ri_ReturningSlot = NULL;
    1252      436978 :     resultRelInfo->ri_TrigOldSlot = NULL;
    1253      436978 :     resultRelInfo->ri_TrigNewSlot = NULL;
    1254      436978 :     resultRelInfo->ri_MergeActions[MERGE_WHEN_MATCHED] = NIL;
    1255      436978 :     resultRelInfo->ri_MergeActions[MERGE_WHEN_NOT_MATCHED_BY_SOURCE] = NIL;
    1256      436978 :     resultRelInfo->ri_MergeActions[MERGE_WHEN_NOT_MATCHED_BY_TARGET] = NIL;
    1257      436978 :     resultRelInfo->ri_MergeJoinCondition = NULL;
    1258             : 
    1259             :     /*
    1260             :      * Only ExecInitPartitionInfo() and ExecInitPartitionDispatchInfo() pass
    1261             :      * non-NULL partition_root_rri.  For child relations that are part of the
    1262             :      * initial query rather than being dynamically added by tuple routing,
    1263             :      * this field is filled in ExecInitModifyTable().
    1264             :      */
    1265      436978 :     resultRelInfo->ri_RootResultRelInfo = partition_root_rri;
    1266             :     /* Set by ExecGetRootToChildMap */
    1267      436978 :     resultRelInfo->ri_RootToChildMap = NULL;
    1268      436978 :     resultRelInfo->ri_RootToChildMapValid = false;
    1269             :     /* Set by ExecInitRoutingInfo */
    1270      436978 :     resultRelInfo->ri_PartitionTupleSlot = NULL;
    1271      436978 :     resultRelInfo->ri_ChildToRootMap = NULL;
    1272      436978 :     resultRelInfo->ri_ChildToRootMapValid = false;
    1273      436978 :     resultRelInfo->ri_CopyMultiInsertBuffer = NULL;
    1274      436978 : }
    1275             : 
    1276             : /*
    1277             :  * ExecGetTriggerResultRel
    1278             :  *      Get a ResultRelInfo for a trigger target relation.
    1279             :  *
    1280             :  * Most of the time, triggers are fired on one of the result relations of the
    1281             :  * query, and so we can just return a member of the es_result_relations array,
    1282             :  * or the es_tuple_routing_result_relations list (if any). (Note: in self-join
    1283             :  * situations there might be multiple members with the same OID; if so it
    1284             :  * doesn't matter which one we pick.)
    1285             :  *
    1286             :  * However, it is sometimes necessary to fire triggers on other relations;
    1287             :  * this happens mainly when an RI update trigger queues additional triggers
    1288             :  * on other relations, which will be processed in the context of the outer
    1289             :  * query.  For efficiency's sake, we want to have a ResultRelInfo for those
    1290             :  * triggers too; that can avoid repeated re-opening of the relation.  (It
    1291             :  * also provides a way for EXPLAIN ANALYZE to report the runtimes of such
    1292             :  * triggers.)  So we make additional ResultRelInfo's as needed, and save them
    1293             :  * in es_trig_target_relations.
    1294             :  */
    1295             : ResultRelInfo *
    1296        8132 : ExecGetTriggerResultRel(EState *estate, Oid relid,
    1297             :                         ResultRelInfo *rootRelInfo)
    1298             : {
    1299             :     ResultRelInfo *rInfo;
    1300             :     ListCell   *l;
    1301             :     Relation    rel;
    1302             :     MemoryContext oldcontext;
    1303             : 
    1304             :     /* Search through the query result relations */
    1305       10300 :     foreach(l, estate->es_opened_result_relations)
    1306             :     {
    1307        8908 :         rInfo = lfirst(l);
    1308        8908 :         if (RelationGetRelid(rInfo->ri_RelationDesc) == relid)
    1309        6740 :             return rInfo;
    1310             :     }
    1311             : 
    1312             :     /*
    1313             :      * Search through the result relations that were created during tuple
    1314             :      * routing, if any.
    1315             :      */
    1316        1600 :     foreach(l, estate->es_tuple_routing_result_relations)
    1317             :     {
    1318         868 :         rInfo = (ResultRelInfo *) lfirst(l);
    1319         868 :         if (RelationGetRelid(rInfo->ri_RelationDesc) == relid)
    1320         660 :             return rInfo;
    1321             :     }
    1322             : 
    1323             :     /* Nope, but maybe we already made an extra ResultRelInfo for it */
    1324        1074 :     foreach(l, estate->es_trig_target_relations)
    1325             :     {
    1326         372 :         rInfo = (ResultRelInfo *) lfirst(l);
    1327         372 :         if (RelationGetRelid(rInfo->ri_RelationDesc) == relid)
    1328          30 :             return rInfo;
    1329             :     }
    1330             :     /* Nope, so we need a new one */
    1331             : 
    1332             :     /*
    1333             :      * Open the target relation's relcache entry.  We assume that an
    1334             :      * appropriate lock is still held by the backend from whenever the trigger
    1335             :      * event got queued, so we need take no new lock here.  Also, we need not
    1336             :      * recheck the relkind, so no need for CheckValidResultRel.
    1337             :      */
    1338         702 :     rel = table_open(relid, NoLock);
    1339             : 
    1340             :     /*
    1341             :      * Make the new entry in the right context.
    1342             :      */
    1343         702 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
    1344         702 :     rInfo = makeNode(ResultRelInfo);
    1345         702 :     InitResultRelInfo(rInfo,
    1346             :                       rel,
    1347             :                       0,        /* dummy rangetable index */
    1348             :                       rootRelInfo,
    1349             :                       estate->es_instrument);
    1350         702 :     estate->es_trig_target_relations =
    1351         702 :         lappend(estate->es_trig_target_relations, rInfo);
    1352         702 :     MemoryContextSwitchTo(oldcontext);
    1353             : 
    1354             :     /*
    1355             :      * Currently, we don't need any index information in ResultRelInfos used
    1356             :      * only for triggers, so no need to call ExecOpenIndices.
    1357             :      */
    1358             : 
    1359         702 :     return rInfo;
    1360             : }
    1361             : 
    1362             : /*
    1363             :  * Return the ancestor relations of a given leaf partition result relation
    1364             :  * up to and including the query's root target relation.
    1365             :  *
    1366             :  * These work much like the ones opened by ExecGetTriggerResultRel, except
    1367             :  * that we need to keep them in a separate list.
    1368             :  *
    1369             :  * These are closed by ExecCloseResultRelations.
    1370             :  */
    1371             : List *
    1372         276 : ExecGetAncestorResultRels(EState *estate, ResultRelInfo *resultRelInfo)
    1373             : {
    1374         276 :     ResultRelInfo *rootRelInfo = resultRelInfo->ri_RootResultRelInfo;
    1375         276 :     Relation    partRel = resultRelInfo->ri_RelationDesc;
    1376             :     Oid         rootRelOid;
    1377             : 
    1378         276 :     if (!partRel->rd_rel->relispartition)
    1379           0 :         elog(ERROR, "cannot find ancestors of a non-partition result relation");
    1380             :     Assert(rootRelInfo != NULL);
    1381         276 :     rootRelOid = RelationGetRelid(rootRelInfo->ri_RelationDesc);
    1382         276 :     if (resultRelInfo->ri_ancestorResultRels == NIL)
    1383             :     {
    1384             :         ListCell   *lc;
    1385         222 :         List       *oids = get_partition_ancestors(RelationGetRelid(partRel));
    1386         222 :         List       *ancResultRels = NIL;
    1387             : 
    1388         288 :         foreach(lc, oids)
    1389             :         {
    1390         288 :             Oid         ancOid = lfirst_oid(lc);
    1391             :             Relation    ancRel;
    1392             :             ResultRelInfo *rInfo;
    1393             : 
    1394             :             /*
    1395             :              * Ignore the root ancestor here, and use ri_RootResultRelInfo
    1396             :              * (below) for it instead.  Also, we stop climbing up the
    1397             :              * hierarchy when we find the table that was mentioned in the
    1398             :              * query.
    1399             :              */
    1400         288 :             if (ancOid == rootRelOid)
    1401         222 :                 break;
    1402             : 
    1403             :             /*
    1404             :              * All ancestors up to the root target relation must have been
    1405             :              * locked by the planner or AcquireExecutorLocks().
    1406             :              */
    1407          66 :             ancRel = table_open(ancOid, NoLock);
    1408          66 :             rInfo = makeNode(ResultRelInfo);
    1409             : 
    1410             :             /* dummy rangetable index */
    1411          66 :             InitResultRelInfo(rInfo, ancRel, 0, NULL,
    1412             :                               estate->es_instrument);
    1413          66 :             ancResultRels = lappend(ancResultRels, rInfo);
    1414             :         }
    1415         222 :         ancResultRels = lappend(ancResultRels, rootRelInfo);
    1416         222 :         resultRelInfo->ri_ancestorResultRels = ancResultRels;
    1417             :     }
    1418             : 
    1419             :     /* We must have found some ancestor */
    1420             :     Assert(resultRelInfo->ri_ancestorResultRels != NIL);
    1421             : 
    1422         276 :     return resultRelInfo->ri_ancestorResultRels;
    1423             : }
    1424             : 
    1425             : /* ----------------------------------------------------------------
    1426             :  *      ExecPostprocessPlan
    1427             :  *
    1428             :  *      Give plan nodes a final chance to execute before shutdown
    1429             :  * ----------------------------------------------------------------
    1430             :  */
    1431             : static void
    1432      557918 : ExecPostprocessPlan(EState *estate)
    1433             : {
    1434             :     ListCell   *lc;
    1435             : 
    1436             :     /*
    1437             :      * Make sure nodes run forward.
    1438             :      */
    1439      557918 :     estate->es_direction = ForwardScanDirection;
    1440             : 
    1441             :     /*
    1442             :      * Run any secondary ModifyTable nodes to completion, in case the main
    1443             :      * query did not fetch all rows from them.  (We do this to ensure that
    1444             :      * such nodes have predictable results.)
    1445             :      */
    1446      558750 :     foreach(lc, estate->es_auxmodifytables)
    1447             :     {
    1448         832 :         PlanState  *ps = (PlanState *) lfirst(lc);
    1449             : 
    1450             :         for (;;)
    1451         138 :         {
    1452             :             TupleTableSlot *slot;
    1453             : 
    1454             :             /* Reset the per-output-tuple exprcontext each time */
    1455         970 :             ResetPerTupleExprContext(estate);
    1456             : 
    1457         970 :             slot = ExecProcNode(ps);
    1458             : 
    1459         970 :             if (TupIsNull(slot))
    1460             :                 break;
    1461             :         }
    1462             :     }
    1463      557918 : }
    1464             : 
    1465             : /* ----------------------------------------------------------------
    1466             :  *      ExecEndPlan
    1467             :  *
    1468             :  *      Cleans up the query plan -- closes files and frees up storage
    1469             :  *
    1470             :  * NOTE: we are no longer very worried about freeing storage per se
    1471             :  * in this code; FreeExecutorState should be guaranteed to release all
    1472             :  * memory that needs to be released.  What we are worried about doing
    1473             :  * is closing relations and dropping buffer pins.  Thus, for example,
    1474             :  * tuple tables must be cleared or dropped to ensure pins are released.
    1475             :  * ----------------------------------------------------------------
    1476             :  */
    1477             : static void
    1478      575658 : ExecEndPlan(PlanState *planstate, EState *estate)
    1479             : {
    1480             :     ListCell   *l;
    1481             : 
    1482             :     /*
    1483             :      * shut down the node-type-specific query processing
    1484             :      */
    1485      575658 :     ExecEndNode(planstate);
    1486             : 
    1487             :     /*
    1488             :      * for subplans too
    1489             :      */
    1490      612434 :     foreach(l, estate->es_subplanstates)
    1491             :     {
    1492       36776 :         PlanState  *subplanstate = (PlanState *) lfirst(l);
    1493             : 
    1494       36776 :         ExecEndNode(subplanstate);
    1495             :     }
    1496             : 
    1497             :     /*
    1498             :      * destroy the executor's tuple table.  Actually we only care about
    1499             :      * releasing buffer pins and tupdesc refcounts; there's no need to pfree
    1500             :      * the TupleTableSlots, since the containing memory context is about to go
    1501             :      * away anyway.
    1502             :      */
    1503      575658 :     ExecResetTupleTable(estate->es_tupleTable, false);
    1504             : 
    1505             :     /*
    1506             :      * Close any Relations that have been opened for range table entries or
    1507             :      * result relations.
    1508             :      */
    1509      575658 :     ExecCloseResultRelations(estate);
    1510      575658 :     ExecCloseRangeTableRelations(estate);
    1511      575658 : }
    1512             : 
    1513             : /*
    1514             :  * Close any relations that have been opened for ResultRelInfos.
    1515             :  */
    1516             : void
    1517      577376 : ExecCloseResultRelations(EState *estate)
    1518             : {
    1519             :     ListCell   *l;
    1520             : 
    1521             :     /*
    1522             :      * close indexes of result relation(s) if any.  (Rels themselves are
    1523             :      * closed in ExecCloseRangeTableRelations())
    1524             :      *
    1525             :      * In addition, close the stub RTs that may be in each resultrel's
    1526             :      * ri_ancestorResultRels.
    1527             :      */
    1528      696702 :     foreach(l, estate->es_opened_result_relations)
    1529             :     {
    1530      119326 :         ResultRelInfo *resultRelInfo = lfirst(l);
    1531             :         ListCell   *lc;
    1532             : 
    1533      119326 :         ExecCloseIndices(resultRelInfo);
    1534      119566 :         foreach(lc, resultRelInfo->ri_ancestorResultRels)
    1535             :         {
    1536         240 :             ResultRelInfo *rInfo = lfirst(lc);
    1537             : 
    1538             :             /*
    1539             :              * Ancestors with RTI > 0 (should only be the root ancestor) are
    1540             :              * closed by ExecCloseRangeTableRelations.
    1541             :              */
    1542         240 :             if (rInfo->ri_RangeTableIndex > 0)
    1543         192 :                 continue;
    1544             : 
    1545          48 :             table_close(rInfo->ri_RelationDesc, NoLock);
    1546             :         }
    1547             :     }
    1548             : 
    1549             :     /* Close any relations that have been opened by ExecGetTriggerResultRel(). */
    1550      577866 :     foreach(l, estate->es_trig_target_relations)
    1551             :     {
    1552         490 :         ResultRelInfo *resultRelInfo = (ResultRelInfo *) lfirst(l);
    1553             : 
    1554             :         /*
    1555             :          * Assert this is a "dummy" ResultRelInfo, see above.  Otherwise we
    1556             :          * might be issuing a duplicate close against a Relation opened by
    1557             :          * ExecGetRangeTableRelation.
    1558             :          */
    1559             :         Assert(resultRelInfo->ri_RangeTableIndex == 0);
    1560             : 
    1561             :         /*
    1562             :          * Since ExecGetTriggerResultRel doesn't call ExecOpenIndices for
    1563             :          * these rels, we needn't call ExecCloseIndices either.
    1564             :          */
    1565             :         Assert(resultRelInfo->ri_NumIndices == 0);
    1566             : 
    1567         490 :         table_close(resultRelInfo->ri_RelationDesc, NoLock);
    1568             :     }
    1569      577376 : }
    1570             : 
    1571             : /*
    1572             :  * Close all relations opened by ExecGetRangeTableRelation().
    1573             :  *
    1574             :  * We do not release any locks we might hold on those rels.
    1575             :  */
    1576             : void
    1577      577002 : ExecCloseRangeTableRelations(EState *estate)
    1578             : {
    1579             :     int         i;
    1580             : 
    1581     1611018 :     for (i = 0; i < estate->es_range_table_size; i++)
    1582             :     {
    1583     1034016 :         if (estate->es_relations[i])
    1584      469026 :             table_close(estate->es_relations[i], NoLock);
    1585             :     }
    1586      577002 : }
    1587             : 
    1588             : /* ----------------------------------------------------------------
    1589             :  *      ExecutePlan
    1590             :  *
    1591             :  *      Processes the query plan until we have retrieved 'numberTuples' tuples,
    1592             :  *      moving in the specified direction.
    1593             :  *
    1594             :  *      Runs to completion if numberTuples is 0
    1595             :  *
    1596             :  * Note: the ctid attribute is a 'junk' attribute that is removed before the
    1597             :  * user can see it
    1598             :  * ----------------------------------------------------------------
    1599             :  */
    1600             : static void
    1601      592560 : ExecutePlan(EState *estate,
    1602             :             PlanState *planstate,
    1603             :             bool use_parallel_mode,
    1604             :             CmdType operation,
    1605             :             bool sendTuples,
    1606             :             uint64 numberTuples,
    1607             :             ScanDirection direction,
    1608             :             DestReceiver *dest,
    1609             :             bool execute_once)
    1610             : {
    1611             :     TupleTableSlot *slot;
    1612             :     uint64      current_tuple_count;
    1613             : 
    1614             :     /*
    1615             :      * initialize local variables
    1616             :      */
    1617      592560 :     current_tuple_count = 0;
    1618             : 
    1619             :     /*
    1620             :      * Set the direction.
    1621             :      */
    1622      592560 :     estate->es_direction = direction;
    1623             : 
    1624             :     /*
    1625             :      * If the plan might potentially be executed multiple times, we must force
    1626             :      * it to run without parallelism, because we might exit early.
    1627             :      */
    1628      592560 :     if (!execute_once)
    1629       20942 :         use_parallel_mode = false;
    1630             : 
    1631      592560 :     estate->es_use_parallel_mode = use_parallel_mode;
    1632      592560 :     if (use_parallel_mode)
    1633         644 :         EnterParallelMode();
    1634             : 
    1635             :     /*
    1636             :      * Loop until we've processed the proper number of tuples from the plan.
    1637             :      */
    1638             :     for (;;)
    1639             :     {
    1640             :         /* Reset the per-output-tuple exprcontext */
    1641    11565486 :         ResetPerTupleExprContext(estate);
    1642             : 
    1643             :         /*
    1644             :          * Execute the plan and obtain a tuple
    1645             :          */
    1646    11565486 :         slot = ExecProcNode(planstate);
    1647             : 
    1648             :         /*
    1649             :          * if the tuple is null, then we assume there is nothing more to
    1650             :          * process so we just end the loop...
    1651             :          */
    1652    11542124 :         if (TupIsNull(slot))
    1653             :             break;
    1654             : 
    1655             :         /*
    1656             :          * If we have a junk filter, then project a new tuple with the junk
    1657             :          * removed.
    1658             :          *
    1659             :          * Store this new "clean" tuple in the junkfilter's resultSlot.
    1660             :          * (Formerly, we stored it back over the "dirty" tuple, which is WRONG
    1661             :          * because that tuple slot has the wrong descriptor.)
    1662             :          */
    1663    11104486 :         if (estate->es_junkFilter != NULL)
    1664      237184 :             slot = ExecFilterJunk(estate->es_junkFilter, slot);
    1665             : 
    1666             :         /*
    1667             :          * If we are supposed to send the tuple somewhere, do so. (In
    1668             :          * practice, this is probably always the case at this point.)
    1669             :          */
    1670    11104486 :         if (sendTuples)
    1671             :         {
    1672             :             /*
    1673             :              * If we are not able to send the tuple, we assume the destination
    1674             :              * has closed and no more tuples can be sent. If that's the case,
    1675             :              * end the loop.
    1676             :              */
    1677    11104486 :             if (!dest->receiveSlot(slot, dest))
    1678           0 :                 break;
    1679             :         }
    1680             : 
    1681             :         /*
    1682             :          * Count tuples processed, if this is a SELECT.  (For other operation
    1683             :          * types, the ModifyTable plan node must count the appropriate
    1684             :          * events.)
    1685             :          */
    1686    11104486 :         if (operation == CMD_SELECT)
    1687    11098426 :             (estate->es_processed)++;
    1688             : 
    1689             :         /*
    1690             :          * check our tuple count.. if we've processed the proper number then
    1691             :          * quit, else loop again and process more tuples.  Zero numberTuples
    1692             :          * means no limit.
    1693             :          */
    1694    11104486 :         current_tuple_count++;
    1695    11104486 :         if (numberTuples && numberTuples == current_tuple_count)
    1696      131560 :             break;
    1697             :     }
    1698             : 
    1699             :     /*
    1700             :      * If we know we won't need to back up, we can release resources at this
    1701             :      * point.
    1702             :      */
    1703      569198 :     if (!(estate->es_top_eflags & EXEC_FLAG_BACKWARD))
    1704      563750 :         ExecShutdownNode(planstate);
    1705             : 
    1706      569198 :     if (use_parallel_mode)
    1707         638 :         ExitParallelMode();
    1708      569198 : }
    1709             : 
    1710             : 
    1711             : /*
    1712             :  * ExecRelCheck --- check that tuple meets constraints for result relation
    1713             :  *
    1714             :  * Returns NULL if OK, else name of failed check constraint
    1715             :  */
    1716             : static const char *
    1717        2710 : ExecRelCheck(ResultRelInfo *resultRelInfo,
    1718             :              TupleTableSlot *slot, EState *estate)
    1719             : {
    1720        2710 :     Relation    rel = resultRelInfo->ri_RelationDesc;
    1721        2710 :     int         ncheck = rel->rd_att->constr->num_check;
    1722        2710 :     ConstrCheck *check = rel->rd_att->constr->check;
    1723             :     ExprContext *econtext;
    1724             :     MemoryContext oldContext;
    1725             :     int         i;
    1726             : 
    1727             :     /*
    1728             :      * CheckConstraintFetch let this pass with only a warning, but now we
    1729             :      * should fail rather than possibly failing to enforce an important
    1730             :      * constraint.
    1731             :      */
    1732        2710 :     if (ncheck != rel->rd_rel->relchecks)
    1733           0 :         elog(ERROR, "%d pg_constraint record(s) missing for relation \"%s\"",
    1734             :              rel->rd_rel->relchecks - ncheck, RelationGetRelationName(rel));
    1735             : 
    1736             :     /*
    1737             :      * If first time through for this result relation, build expression
    1738             :      * nodetrees for rel's constraint expressions.  Keep them in the per-query
    1739             :      * memory context so they'll survive throughout the query.
    1740             :      */
    1741        2710 :     if (resultRelInfo->ri_ConstraintExprs == NULL)
    1742             :     {
    1743        1258 :         oldContext = MemoryContextSwitchTo(estate->es_query_cxt);
    1744        1258 :         resultRelInfo->ri_ConstraintExprs =
    1745        1258 :             (ExprState **) palloc(ncheck * sizeof(ExprState *));
    1746        3052 :         for (i = 0; i < ncheck; i++)
    1747             :         {
    1748             :             Expr       *checkconstr;
    1749             : 
    1750        1800 :             checkconstr = stringToNode(check[i].ccbin);
    1751        1794 :             resultRelInfo->ri_ConstraintExprs[i] =
    1752        1800 :                 ExecPrepareExpr(checkconstr, estate);
    1753             :         }
    1754        1252 :         MemoryContextSwitchTo(oldContext);
    1755             :     }
    1756             : 
    1757             :     /*
    1758             :      * We will use the EState's per-tuple context for evaluating constraint
    1759             :      * expressions (creating it if it's not already there).
    1760             :      */
    1761        2704 :     econtext = GetPerTupleExprContext(estate);
    1762             : 
    1763             :     /* Arrange for econtext's scan tuple to be the tuple under test */
    1764        2704 :     econtext->ecxt_scantuple = slot;
    1765             : 
    1766             :     /* And evaluate the constraints */
    1767        5976 :     for (i = 0; i < ncheck; i++)
    1768             :     {
    1769        3714 :         ExprState  *checkconstr = resultRelInfo->ri_ConstraintExprs[i];
    1770             : 
    1771             :         /*
    1772             :          * NOTE: SQL specifies that a NULL result from a constraint expression
    1773             :          * is not to be treated as a failure.  Therefore, use ExecCheck not
    1774             :          * ExecQual.
    1775             :          */
    1776        3714 :         if (!ExecCheck(checkconstr, econtext))
    1777         442 :             return check[i].ccname;
    1778             :     }
    1779             : 
    1780             :     /* NULL result means no error */
    1781        2262 :     return NULL;
    1782             : }
    1783             : 
    1784             : /*
    1785             :  * ExecPartitionCheck --- check that tuple meets the partition constraint.
    1786             :  *
    1787             :  * Returns true if it meets the partition constraint.  If the constraint
    1788             :  * fails and we're asked to emit an error, do so and don't return; otherwise
    1789             :  * return false.
    1790             :  */
    1791             : bool
    1792       15502 : ExecPartitionCheck(ResultRelInfo *resultRelInfo, TupleTableSlot *slot,
    1793             :                    EState *estate, bool emitError)
    1794             : {
    1795             :     ExprContext *econtext;
    1796             :     bool        success;
    1797             : 
    1798             :     /*
    1799             :      * If first time through, build expression state tree for the partition
    1800             :      * check expression.  (In the corner case where the partition check
    1801             :      * expression is empty, ie there's a default partition and nothing else,
    1802             :      * we'll be fooled into executing this code each time through.  But it's
    1803             :      * pretty darn cheap in that case, so we don't worry about it.)
    1804             :      */
    1805       15502 :     if (resultRelInfo->ri_PartitionCheckExpr == NULL)
    1806             :     {
    1807             :         /*
    1808             :          * Ensure that the qual tree and prepared expression are in the
    1809             :          * query-lifespan context.
    1810             :          */
    1811        5660 :         MemoryContext oldcxt = MemoryContextSwitchTo(estate->es_query_cxt);
    1812        5660 :         List       *qual = RelationGetPartitionQual(resultRelInfo->ri_RelationDesc);
    1813             : 
    1814        5660 :         resultRelInfo->ri_PartitionCheckExpr = ExecPrepareCheck(qual, estate);
    1815        5660 :         MemoryContextSwitchTo(oldcxt);
    1816             :     }
    1817             : 
    1818             :     /*
    1819             :      * We will use the EState's per-tuple context for evaluating constraint
    1820             :      * expressions (creating it if it's not already there).
    1821             :      */
    1822       15502 :     econtext = GetPerTupleExprContext(estate);
    1823             : 
    1824             :     /* Arrange for econtext's scan tuple to be the tuple under test */
    1825       15502 :     econtext->ecxt_scantuple = slot;
    1826             : 
    1827             :     /*
    1828             :      * As in case of the cataloged constraints, we treat a NULL result as
    1829             :      * success here, not a failure.
    1830             :      */
    1831       15502 :     success = ExecCheck(resultRelInfo->ri_PartitionCheckExpr, econtext);
    1832             : 
    1833             :     /* if asked to emit error, don't actually return on failure */
    1834       15502 :     if (!success && emitError)
    1835         202 :         ExecPartitionCheckEmitError(resultRelInfo, slot, estate);
    1836             : 
    1837       15300 :     return success;
    1838             : }
    1839             : 
    1840             : /*
    1841             :  * ExecPartitionCheckEmitError - Form and emit an error message after a failed
    1842             :  * partition constraint check.
    1843             :  */
    1844             : void
    1845         244 : ExecPartitionCheckEmitError(ResultRelInfo *resultRelInfo,
    1846             :                             TupleTableSlot *slot,
    1847             :                             EState *estate)
    1848             : {
    1849             :     Oid         root_relid;
    1850             :     TupleDesc   tupdesc;
    1851             :     char       *val_desc;
    1852             :     Bitmapset  *modifiedCols;
    1853             : 
    1854             :     /*
    1855             :      * If the tuple has been routed, it's been converted to the partition's
    1856             :      * rowtype, which might differ from the root table's.  We must convert it
    1857             :      * back to the root table's rowtype so that val_desc in the error message
    1858             :      * matches the input tuple.
    1859             :      */
    1860         244 :     if (resultRelInfo->ri_RootResultRelInfo)
    1861             :     {
    1862          20 :         ResultRelInfo *rootrel = resultRelInfo->ri_RootResultRelInfo;
    1863             :         TupleDesc   old_tupdesc;
    1864             :         AttrMap    *map;
    1865             : 
    1866          20 :         root_relid = RelationGetRelid(rootrel->ri_RelationDesc);
    1867          20 :         tupdesc = RelationGetDescr(rootrel->ri_RelationDesc);
    1868             : 
    1869          20 :         old_tupdesc = RelationGetDescr(resultRelInfo->ri_RelationDesc);
    1870             :         /* a reverse map */
    1871          20 :         map = build_attrmap_by_name_if_req(old_tupdesc, tupdesc, false);
    1872             : 
    1873             :         /*
    1874             :          * Partition-specific slot's tupdesc can't be changed, so allocate a
    1875             :          * new one.
    1876             :          */
    1877          20 :         if (map != NULL)
    1878           8 :             slot = execute_attr_map_slot(map, slot,
    1879             :                                          MakeTupleTableSlot(tupdesc, &TTSOpsVirtual));
    1880          20 :         modifiedCols = bms_union(ExecGetInsertedCols(rootrel, estate),
    1881          20 :                                  ExecGetUpdatedCols(rootrel, estate));
    1882             :     }
    1883             :     else
    1884             :     {
    1885         224 :         root_relid = RelationGetRelid(resultRelInfo->ri_RelationDesc);
    1886         224 :         tupdesc = RelationGetDescr(resultRelInfo->ri_RelationDesc);
    1887         224 :         modifiedCols = bms_union(ExecGetInsertedCols(resultRelInfo, estate),
    1888         224 :                                  ExecGetUpdatedCols(resultRelInfo, estate));
    1889             :     }
    1890             : 
    1891         244 :     val_desc = ExecBuildSlotValueDescription(root_relid,
    1892             :                                              slot,
    1893             :                                              tupdesc,
    1894             :                                              modifiedCols,
    1895             :                                              64);
    1896         244 :     ereport(ERROR,
    1897             :             (errcode(ERRCODE_CHECK_VIOLATION),
    1898             :              errmsg("new row for relation \"%s\" violates partition constraint",
    1899             :                     RelationGetRelationName(resultRelInfo->ri_RelationDesc)),
    1900             :              val_desc ? errdetail("Failing row contains %s.", val_desc) : 0,
    1901             :              errtable(resultRelInfo->ri_RelationDesc)));
    1902             : }
    1903             : 
    1904             : /*
    1905             :  * ExecConstraints - check constraints of the tuple in 'slot'
    1906             :  *
    1907             :  * This checks the traditional NOT NULL and check constraints.
    1908             :  *
    1909             :  * The partition constraint is *NOT* checked.
    1910             :  *
    1911             :  * Note: 'slot' contains the tuple to check the constraints of, which may
    1912             :  * have been converted from the original input tuple after tuple routing.
    1913             :  * 'resultRelInfo' is the final result relation, after tuple routing.
    1914             :  */
    1915             : void
    1916     3839526 : ExecConstraints(ResultRelInfo *resultRelInfo,
    1917             :                 TupleTableSlot *slot, EState *estate)
    1918             : {
    1919     3839526 :     Relation    rel = resultRelInfo->ri_RelationDesc;
    1920     3839526 :     TupleDesc   tupdesc = RelationGetDescr(rel);
    1921     3839526 :     TupleConstr *constr = tupdesc->constr;
    1922             :     Bitmapset  *modifiedCols;
    1923             : 
    1924             :     Assert(constr);             /* we should not be called otherwise */
    1925             : 
    1926     3839526 :     if (constr->has_not_null)
    1927             :     {
    1928     3833742 :         int         natts = tupdesc->natts;
    1929             :         int         attrChk;
    1930             : 
    1931    14261092 :         for (attrChk = 1; attrChk <= natts; attrChk++)
    1932             :         {
    1933    10427634 :             Form_pg_attribute att = TupleDescAttr(tupdesc, attrChk - 1);
    1934             : 
    1935    10427634 :             if (att->attnotnull && slot_attisnull(slot, attrChk))
    1936             :             {
    1937             :                 char       *val_desc;
    1938         284 :                 Relation    orig_rel = rel;
    1939         284 :                 TupleDesc   orig_tupdesc = RelationGetDescr(rel);
    1940             : 
    1941             :                 /*
    1942             :                  * If the tuple has been routed, it's been converted to the
    1943             :                  * partition's rowtype, which might differ from the root
    1944             :                  * table's.  We must convert it back to the root table's
    1945             :                  * rowtype so that val_desc shown error message matches the
    1946             :                  * input tuple.
    1947             :                  */
    1948         284 :                 if (resultRelInfo->ri_RootResultRelInfo)
    1949             :                 {
    1950          60 :                     ResultRelInfo *rootrel = resultRelInfo->ri_RootResultRelInfo;
    1951             :                     AttrMap    *map;
    1952             : 
    1953          60 :                     tupdesc = RelationGetDescr(rootrel->ri_RelationDesc);
    1954             :                     /* a reverse map */
    1955          60 :                     map = build_attrmap_by_name_if_req(orig_tupdesc,
    1956             :                                                        tupdesc,
    1957             :                                                        false);
    1958             : 
    1959             :                     /*
    1960             :                      * Partition-specific slot's tupdesc can't be changed, so
    1961             :                      * allocate a new one.
    1962             :                      */
    1963          60 :                     if (map != NULL)
    1964          42 :                         slot = execute_attr_map_slot(map, slot,
    1965             :                                                      MakeTupleTableSlot(tupdesc, &TTSOpsVirtual));
    1966          60 :                     modifiedCols = bms_union(ExecGetInsertedCols(rootrel, estate),
    1967          60 :                                              ExecGetUpdatedCols(rootrel, estate));
    1968          60 :                     rel = rootrel->ri_RelationDesc;
    1969             :                 }
    1970             :                 else
    1971         224 :                     modifiedCols = bms_union(ExecGetInsertedCols(resultRelInfo, estate),
    1972         224 :                                              ExecGetUpdatedCols(resultRelInfo, estate));
    1973         284 :                 val_desc = ExecBuildSlotValueDescription(RelationGetRelid(rel),
    1974             :                                                          slot,
    1975             :                                                          tupdesc,
    1976             :                                                          modifiedCols,
    1977             :                                                          64);
    1978             : 
    1979         284 :                 ereport(ERROR,
    1980             :                         (errcode(ERRCODE_NOT_NULL_VIOLATION),
    1981             :                          errmsg("null value in column \"%s\" of relation \"%s\" violates not-null constraint",
    1982             :                                 NameStr(att->attname),
    1983             :                                 RelationGetRelationName(orig_rel)),
    1984             :                          val_desc ? errdetail("Failing row contains %s.", val_desc) : 0,
    1985             :                          errtablecol(orig_rel, attrChk)));
    1986             :             }
    1987             :         }
    1988             :     }
    1989             : 
    1990     3839242 :     if (rel->rd_rel->relchecks > 0)
    1991             :     {
    1992             :         const char *failed;
    1993             : 
    1994        2710 :         if ((failed = ExecRelCheck(resultRelInfo, slot, estate)) != NULL)
    1995             :         {
    1996             :             char       *val_desc;
    1997         442 :             Relation    orig_rel = rel;
    1998             : 
    1999             :             /* See the comment above. */
    2000         442 :             if (resultRelInfo->ri_RootResultRelInfo)
    2001             :             {
    2002          96 :                 ResultRelInfo *rootrel = resultRelInfo->ri_RootResultRelInfo;
    2003          96 :                 TupleDesc   old_tupdesc = RelationGetDescr(rel);
    2004             :                 AttrMap    *map;
    2005             : 
    2006          96 :                 tupdesc = RelationGetDescr(rootrel->ri_RelationDesc);
    2007             :                 /* a reverse map */
    2008          96 :                 map = build_attrmap_by_name_if_req(old_tupdesc,
    2009             :                                                    tupdesc,
    2010             :                                                    false);
    2011             : 
    2012             :                 /*
    2013             :                  * Partition-specific slot's tupdesc can't be changed, so
    2014             :                  * allocate a new one.
    2015             :                  */
    2016          96 :                 if (map != NULL)
    2017          60 :                     slot = execute_attr_map_slot(map, slot,
    2018             :                                                  MakeTupleTableSlot(tupdesc, &TTSOpsVirtual));
    2019          96 :                 modifiedCols = bms_union(ExecGetInsertedCols(rootrel, estate),
    2020          96 :                                          ExecGetUpdatedCols(rootrel, estate));
    2021          96 :                 rel = rootrel->ri_RelationDesc;
    2022             :             }
    2023             :             else
    2024         346 :                 modifiedCols = bms_union(ExecGetInsertedCols(resultRelInfo, estate),
    2025         346 :                                          ExecGetUpdatedCols(resultRelInfo, estate));
    2026         442 :             val_desc = ExecBuildSlotValueDescription(RelationGetRelid(rel),
    2027             :                                                      slot,
    2028             :                                                      tupdesc,
    2029             :                                                      modifiedCols,
    2030             :                                                      64);
    2031         442 :             ereport(ERROR,
    2032             :                     (errcode(ERRCODE_CHECK_VIOLATION),
    2033             :                      errmsg("new row for relation \"%s\" violates check constraint \"%s\"",
    2034             :                             RelationGetRelationName(orig_rel), failed),
    2035             :                      val_desc ? errdetail("Failing row contains %s.", val_desc) : 0,
    2036             :                      errtableconstraint(orig_rel, failed)));
    2037             :         }
    2038             :     }
    2039     3838794 : }
    2040             : 
    2041             : /*
    2042             :  * ExecWithCheckOptions -- check that tuple satisfies any WITH CHECK OPTIONs
    2043             :  * of the specified kind.
    2044             :  *
    2045             :  * Note that this needs to be called multiple times to ensure that all kinds of
    2046             :  * WITH CHECK OPTIONs are handled (both those from views which have the WITH
    2047             :  * CHECK OPTION set and from row-level security policies).  See ExecInsert()
    2048             :  * and ExecUpdate().
    2049             :  */
    2050             : void
    2051        1988 : ExecWithCheckOptions(WCOKind kind, ResultRelInfo *resultRelInfo,
    2052             :                      TupleTableSlot *slot, EState *estate)
    2053             : {
    2054        1988 :     Relation    rel = resultRelInfo->ri_RelationDesc;
    2055        1988 :     TupleDesc   tupdesc = RelationGetDescr(rel);
    2056             :     ExprContext *econtext;
    2057             :     ListCell   *l1,
    2058             :                *l2;
    2059             : 
    2060             :     /*
    2061             :      * We will use the EState's per-tuple context for evaluating constraint
    2062             :      * expressions (creating it if it's not already there).
    2063             :      */
    2064        1988 :     econtext = GetPerTupleExprContext(estate);
    2065             : 
    2066             :     /* Arrange for econtext's scan tuple to be the tuple under test */
    2067        1988 :     econtext->ecxt_scantuple = slot;
    2068             : 
    2069             :     /* Check each of the constraints */
    2070        4726 :     forboth(l1, resultRelInfo->ri_WithCheckOptions,
    2071             :             l2, resultRelInfo->ri_WithCheckOptionExprs)
    2072             :     {
    2073        3236 :         WithCheckOption *wco = (WithCheckOption *) lfirst(l1);
    2074        3236 :         ExprState  *wcoExpr = (ExprState *) lfirst(l2);
    2075             : 
    2076             :         /*
    2077             :          * Skip any WCOs which are not the kind we are looking for at this
    2078             :          * time.
    2079             :          */
    2080        3236 :         if (wco->kind != kind)
    2081        1810 :             continue;
    2082             : 
    2083             :         /*
    2084             :          * WITH CHECK OPTION checks are intended to ensure that the new tuple
    2085             :          * is visible (in the case of a view) or that it passes the
    2086             :          * 'with-check' policy (in the case of row security). If the qual
    2087             :          * evaluates to NULL or FALSE, then the new tuple won't be included in
    2088             :          * the view or doesn't pass the 'with-check' policy for the table.
    2089             :          */
    2090        1426 :         if (!ExecQual(wcoExpr, econtext))
    2091             :         {
    2092             :             char       *val_desc;
    2093             :             Bitmapset  *modifiedCols;
    2094             : 
    2095         498 :             switch (wco->kind)
    2096             :             {
    2097             :                     /*
    2098             :                      * For WITH CHECK OPTIONs coming from views, we might be
    2099             :                      * able to provide the details on the row, depending on
    2100             :                      * the permissions on the relation (that is, if the user
    2101             :                      * could view it directly anyway).  For RLS violations, we
    2102             :                      * don't include the data since we don't know if the user
    2103             :                      * should be able to view the tuple as that depends on the
    2104             :                      * USING policy.
    2105             :                      */
    2106         222 :                 case WCO_VIEW_CHECK:
    2107             :                     /* See the comment in ExecConstraints(). */
    2108         222 :                     if (resultRelInfo->ri_RootResultRelInfo)
    2109             :                     {
    2110          36 :                         ResultRelInfo *rootrel = resultRelInfo->ri_RootResultRelInfo;
    2111          36 :                         TupleDesc   old_tupdesc = RelationGetDescr(rel);
    2112             :                         AttrMap    *map;
    2113             : 
    2114          36 :                         tupdesc = RelationGetDescr(rootrel->ri_RelationDesc);
    2115             :                         /* a reverse map */
    2116          36 :                         map = build_attrmap_by_name_if_req(old_tupdesc,
    2117             :                                                            tupdesc,
    2118             :                                                            false);
    2119             : 
    2120             :                         /*
    2121             :                          * Partition-specific slot's tupdesc can't be changed,
    2122             :                          * so allocate a new one.
    2123             :                          */
    2124          36 :                         if (map != NULL)
    2125          18 :                             slot = execute_attr_map_slot(map, slot,
    2126             :                                                          MakeTupleTableSlot(tupdesc, &TTSOpsVirtual));
    2127             : 
    2128          36 :                         modifiedCols = bms_union(ExecGetInsertedCols(rootrel, estate),
    2129          36 :                                                  ExecGetUpdatedCols(rootrel, estate));
    2130          36 :                         rel = rootrel->ri_RelationDesc;
    2131             :                     }
    2132             :                     else
    2133         186 :                         modifiedCols = bms_union(ExecGetInsertedCols(resultRelInfo, estate),
    2134         186 :                                                  ExecGetUpdatedCols(resultRelInfo, estate));
    2135         222 :                     val_desc = ExecBuildSlotValueDescription(RelationGetRelid(rel),
    2136             :                                                              slot,
    2137             :                                                              tupdesc,
    2138             :                                                              modifiedCols,
    2139             :                                                              64);
    2140             : 
    2141         222 :                     ereport(ERROR,
    2142             :                             (errcode(ERRCODE_WITH_CHECK_OPTION_VIOLATION),
    2143             :                              errmsg("new row violates check option for view \"%s\"",
    2144             :                                     wco->relname),
    2145             :                              val_desc ? errdetail("Failing row contains %s.",
    2146             :                                                   val_desc) : 0));
    2147             :                     break;
    2148         228 :                 case WCO_RLS_INSERT_CHECK:
    2149             :                 case WCO_RLS_UPDATE_CHECK:
    2150         228 :                     if (wco->polname != NULL)
    2151          48 :                         ereport(ERROR,
    2152             :                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
    2153             :                                  errmsg("new row violates row-level security policy \"%s\" for table \"%s\"",
    2154             :                                         wco->polname, wco->relname)));
    2155             :                     else
    2156         180 :                         ereport(ERROR,
    2157             :                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
    2158             :                                  errmsg("new row violates row-level security policy for table \"%s\"",
    2159             :                                         wco->relname)));
    2160             :                     break;
    2161          24 :                 case WCO_RLS_MERGE_UPDATE_CHECK:
    2162             :                 case WCO_RLS_MERGE_DELETE_CHECK:
    2163          24 :                     if (wco->polname != NULL)
    2164           0 :                         ereport(ERROR,
    2165             :                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
    2166             :                                  errmsg("target row violates row-level security policy \"%s\" (USING expression) for table \"%s\"",
    2167             :                                         wco->polname, wco->relname)));
    2168             :                     else
    2169          24 :                         ereport(ERROR,
    2170             :                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
    2171             :                                  errmsg("target row violates row-level security policy (USING expression) for table \"%s\"",
    2172             :                                         wco->relname)));
    2173             :                     break;
    2174          24 :                 case WCO_RLS_CONFLICT_CHECK:
    2175          24 :                     if (wco->polname != NULL)
    2176           0 :                         ereport(ERROR,
    2177             :                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
    2178             :                                  errmsg("new row violates row-level security policy \"%s\" (USING expression) for table \"%s\"",
    2179             :                                         wco->polname, wco->relname)));
    2180             :                     else
    2181          24 :                         ereport(ERROR,
    2182             :                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
    2183             :                                  errmsg("new row violates row-level security policy (USING expression) for table \"%s\"",
    2184             :                                         wco->relname)));
    2185             :                     break;
    2186           0 :                 default:
    2187           0 :                     elog(ERROR, "unrecognized WCO kind: %u", wco->kind);
    2188             :                     break;
    2189             :             }
    2190         928 :         }
    2191             :     }
    2192        1490 : }
    2193             : 
    2194             : /*
    2195             :  * ExecBuildSlotValueDescription -- construct a string representing a tuple
    2196             :  *
    2197             :  * This is intentionally very similar to BuildIndexValueDescription, but
    2198             :  * unlike that function, we truncate long field values (to at most maxfieldlen
    2199             :  * bytes).  That seems necessary here since heap field values could be very
    2200             :  * long, whereas index entries typically aren't so wide.
    2201             :  *
    2202             :  * Also, unlike the case with index entries, we need to be prepared to ignore
    2203             :  * dropped columns.  We used to use the slot's tuple descriptor to decode the
    2204             :  * data, but the slot's descriptor doesn't identify dropped columns, so we
    2205             :  * now need to be passed the relation's descriptor.
    2206             :  *
    2207             :  * Note that, like BuildIndexValueDescription, if the user does not have
    2208             :  * permission to view any of the columns involved, a NULL is returned.  Unlike
    2209             :  * BuildIndexValueDescription, if the user has access to view a subset of the
    2210             :  * column involved, that subset will be returned with a key identifying which
    2211             :  * columns they are.
    2212             :  */
    2213             : static char *
    2214        1192 : ExecBuildSlotValueDescription(Oid reloid,
    2215             :                               TupleTableSlot *slot,
    2216             :                               TupleDesc tupdesc,
    2217             :                               Bitmapset *modifiedCols,
    2218             :                               int maxfieldlen)
    2219             : {
    2220             :     StringInfoData buf;
    2221             :     StringInfoData collist;
    2222        1192 :     bool        write_comma = false;
    2223        1192 :     bool        write_comma_collist = false;
    2224             :     int         i;
    2225             :     AclResult   aclresult;
    2226        1192 :     bool        table_perm = false;
    2227        1192 :     bool        any_perm = false;
    2228             : 
    2229             :     /*
    2230             :      * Check if RLS is enabled and should be active for the relation; if so,
    2231             :      * then don't return anything.  Otherwise, go through normal permission
    2232             :      * checks.
    2233             :      */
    2234        1192 :     if (check_enable_rls(reloid, InvalidOid, true) == RLS_ENABLED)
    2235           0 :         return NULL;
    2236             : 
    2237        1192 :     initStringInfo(&buf);
    2238             : 
    2239        1192 :     appendStringInfoChar(&buf, '(');
    2240             : 
    2241             :     /*
    2242             :      * Check if the user has permissions to see the row.  Table-level SELECT
    2243             :      * allows access to all columns.  If the user does not have table-level
    2244             :      * SELECT then we check each column and include those the user has SELECT
    2245             :      * rights on.  Additionally, we always include columns the user provided
    2246             :      * data for.
    2247             :      */
    2248        1192 :     aclresult = pg_class_aclcheck(reloid, GetUserId(), ACL_SELECT);
    2249        1192 :     if (aclresult != ACLCHECK_OK)
    2250             :     {
    2251             :         /* Set up the buffer for the column list */
    2252          60 :         initStringInfo(&collist);
    2253          60 :         appendStringInfoChar(&collist, '(');
    2254             :     }
    2255             :     else
    2256        1132 :         table_perm = any_perm = true;
    2257             : 
    2258             :     /* Make sure the tuple is fully deconstructed */
    2259        1192 :     slot_getallattrs(slot);
    2260             : 
    2261        4332 :     for (i = 0; i < tupdesc->natts; i++)
    2262             :     {
    2263        3140 :         bool        column_perm = false;
    2264             :         char       *val;
    2265             :         int         vallen;
    2266        3140 :         Form_pg_attribute att = TupleDescAttr(tupdesc, i);
    2267             : 
    2268             :         /* ignore dropped columns */
    2269        3140 :         if (att->attisdropped)
    2270          38 :             continue;
    2271             : 
    2272        3102 :         if (!table_perm)
    2273             :         {
    2274             :             /*
    2275             :              * No table-level SELECT, so need to make sure they either have
    2276             :              * SELECT rights on the column or that they have provided the data
    2277             :              * for the column.  If not, omit this column from the error
    2278             :              * message.
    2279             :              */
    2280         234 :             aclresult = pg_attribute_aclcheck(reloid, att->attnum,
    2281             :                                               GetUserId(), ACL_SELECT);
    2282         234 :             if (bms_is_member(att->attnum - FirstLowInvalidHeapAttributeNumber,
    2283         138 :                               modifiedCols) || aclresult == ACLCHECK_OK)
    2284             :             {
    2285         144 :                 column_perm = any_perm = true;
    2286             : 
    2287         144 :                 if (write_comma_collist)
    2288          84 :                     appendStringInfoString(&collist, ", ");
    2289             :                 else
    2290          60 :                     write_comma_collist = true;
    2291             : 
    2292         144 :                 appendStringInfoString(&collist, NameStr(att->attname));
    2293             :             }
    2294             :         }
    2295             : 
    2296        3102 :         if (table_perm || column_perm)
    2297             :         {
    2298        3012 :             if (slot->tts_isnull[i])
    2299         550 :                 val = "null";
    2300             :             else
    2301             :             {
    2302             :                 Oid         foutoid;
    2303             :                 bool        typisvarlena;
    2304             : 
    2305        2462 :                 getTypeOutputInfo(att->atttypid,
    2306             :                                   &foutoid, &typisvarlena);
    2307        2462 :                 val = OidOutputFunctionCall(foutoid, slot->tts_values[i]);
    2308             :             }
    2309             : 
    2310        3012 :             if (write_comma)
    2311        1820 :                 appendStringInfoString(&buf, ", ");
    2312             :             else
    2313        1192 :                 write_comma = true;
    2314             : 
    2315             :             /* truncate if needed */
    2316        3012 :             vallen = strlen(val);
    2317        3012 :             if (vallen <= maxfieldlen)
    2318        3012 :                 appendBinaryStringInfo(&buf, val, vallen);
    2319             :             else
    2320             :             {
    2321           0 :                 vallen = pg_mbcliplen(val, vallen, maxfieldlen);
    2322           0 :                 appendBinaryStringInfo(&buf, val, vallen);
    2323           0 :                 appendStringInfoString(&buf, "...");
    2324             :             }
    2325             :         }
    2326             :     }
    2327             : 
    2328             :     /* If we end up with zero columns being returned, then return NULL. */
    2329        1192 :     if (!any_perm)
    2330           0 :         return NULL;
    2331             : 
    2332        1192 :     appendStringInfoChar(&buf, ')');
    2333             : 
    2334        1192 :     if (!table_perm)
    2335             :     {
    2336          60 :         appendStringInfoString(&collist, ") = ");
    2337          60 :         appendBinaryStringInfo(&collist, buf.data, buf.len);
    2338             : 
    2339          60 :         return collist.data;
    2340             :     }
    2341             : 
    2342        1132 :     return buf.data;
    2343             : }
    2344             : 
    2345             : 
    2346             : /*
    2347             :  * ExecUpdateLockMode -- find the appropriate UPDATE tuple lock mode for a
    2348             :  * given ResultRelInfo
    2349             :  */
    2350             : LockTupleMode
    2351        7842 : ExecUpdateLockMode(EState *estate, ResultRelInfo *relinfo)
    2352             : {
    2353             :     Bitmapset  *keyCols;
    2354             :     Bitmapset  *updatedCols;
    2355             : 
    2356             :     /*
    2357             :      * Compute lock mode to use.  If columns that are part of the key have not
    2358             :      * been modified, then we can use a weaker lock, allowing for better
    2359             :      * concurrency.
    2360             :      */
    2361        7842 :     updatedCols = ExecGetAllUpdatedCols(relinfo, estate);
    2362        7842 :     keyCols = RelationGetIndexAttrBitmap(relinfo->ri_RelationDesc,
    2363             :                                          INDEX_ATTR_BITMAP_KEY);
    2364             : 
    2365        7842 :     if (bms_overlap(keyCols, updatedCols))
    2366         248 :         return LockTupleExclusive;
    2367             : 
    2368        7594 :     return LockTupleNoKeyExclusive;
    2369             : }
    2370             : 
    2371             : /*
    2372             :  * ExecFindRowMark -- find the ExecRowMark struct for given rangetable index
    2373             :  *
    2374             :  * If no such struct, either return NULL or throw error depending on missing_ok
    2375             :  */
    2376             : ExecRowMark *
    2377       10762 : ExecFindRowMark(EState *estate, Index rti, bool missing_ok)
    2378             : {
    2379       10762 :     if (rti > 0 && rti <= estate->es_range_table_size &&
    2380       10762 :         estate->es_rowmarks != NULL)
    2381             :     {
    2382       10762 :         ExecRowMark *erm = estate->es_rowmarks[rti - 1];
    2383             : 
    2384       10762 :         if (erm)
    2385       10762 :             return erm;
    2386             :     }
    2387           0 :     if (!missing_ok)
    2388           0 :         elog(ERROR, "failed to find ExecRowMark for rangetable index %u", rti);
    2389           0 :     return NULL;
    2390             : }
    2391             : 
    2392             : /*
    2393             :  * ExecBuildAuxRowMark -- create an ExecAuxRowMark struct
    2394             :  *
    2395             :  * Inputs are the underlying ExecRowMark struct and the targetlist of the
    2396             :  * input plan node (not planstate node!).  We need the latter to find out
    2397             :  * the column numbers of the resjunk columns.
    2398             :  */
    2399             : ExecAuxRowMark *
    2400       10762 : ExecBuildAuxRowMark(ExecRowMark *erm, List *targetlist)
    2401             : {
    2402       10762 :     ExecAuxRowMark *aerm = (ExecAuxRowMark *) palloc0(sizeof(ExecAuxRowMark));
    2403             :     char        resname[32];
    2404             : 
    2405       10762 :     aerm->rowmark = erm;
    2406             : 
    2407             :     /* Look up the resjunk columns associated with this rowmark */
    2408       10762 :     if (erm->markType != ROW_MARK_COPY)
    2409             :     {
    2410             :         /* need ctid for all methods other than COPY */
    2411       10124 :         snprintf(resname, sizeof(resname), "ctid%u", erm->rowmarkId);
    2412       10124 :         aerm->ctidAttNo = ExecFindJunkAttributeInTlist(targetlist,
    2413             :                                                        resname);
    2414       10124 :         if (!AttributeNumberIsValid(aerm->ctidAttNo))
    2415           0 :             elog(ERROR, "could not find junk %s column", resname);
    2416             :     }
    2417             :     else
    2418             :     {
    2419             :         /* need wholerow if COPY */
    2420         638 :         snprintf(resname, sizeof(resname), "wholerow%u", erm->rowmarkId);
    2421         638 :         aerm->wholeAttNo = ExecFindJunkAttributeInTlist(targetlist,
    2422             :                                                         resname);
    2423         638 :         if (!AttributeNumberIsValid(aerm->wholeAttNo))
    2424           0 :             elog(ERROR, "could not find junk %s column", resname);
    2425             :     }
    2426             : 
    2427             :     /* if child rel, need tableoid */
    2428       10762 :     if (erm->rti != erm->prti)
    2429             :     {
    2430        1828 :         snprintf(resname, sizeof(resname), "tableoid%u", erm->rowmarkId);
    2431        1828 :         aerm->toidAttNo = ExecFindJunkAttributeInTlist(targetlist,
    2432             :                                                        resname);
    2433        1828 :         if (!AttributeNumberIsValid(aerm->toidAttNo))
    2434           0 :             elog(ERROR, "could not find junk %s column", resname);
    2435             :     }
    2436             : 
    2437       10762 :     return aerm;
    2438             : }
    2439             : 
    2440             : 
    2441             : /*
    2442             :  * EvalPlanQual logic --- recheck modified tuple(s) to see if we want to
    2443             :  * process the updated version under READ COMMITTED rules.
    2444             :  *
    2445             :  * See backend/executor/README for some info about how this works.
    2446             :  */
    2447             : 
    2448             : 
    2449             : /*
    2450             :  * Check the updated version of a tuple to see if we want to process it under
    2451             :  * READ COMMITTED rules.
    2452             :  *
    2453             :  *  epqstate - state for EvalPlanQual rechecking
    2454             :  *  relation - table containing tuple
    2455             :  *  rti - rangetable index of table containing tuple
    2456             :  *  inputslot - tuple for processing - this can be the slot from
    2457             :  *      EvalPlanQualSlot() for this rel, for increased efficiency.
    2458             :  *
    2459             :  * This tests whether the tuple in inputslot still matches the relevant
    2460             :  * quals. For that result to be useful, typically the input tuple has to be
    2461             :  * last row version (otherwise the result isn't particularly useful) and
    2462             :  * locked (otherwise the result might be out of date). That's typically
    2463             :  * achieved by using table_tuple_lock() with the
    2464             :  * TUPLE_LOCK_FLAG_FIND_LAST_VERSION flag.
    2465             :  *
    2466             :  * Returns a slot containing the new candidate update/delete tuple, or
    2467             :  * NULL if we determine we shouldn't process the row.
    2468             :  */
    2469             : TupleTableSlot *
    2470         254 : EvalPlanQual(EPQState *epqstate, Relation relation,
    2471             :              Index rti, TupleTableSlot *inputslot)
    2472             : {
    2473             :     TupleTableSlot *slot;
    2474             :     TupleTableSlot *testslot;
    2475             : 
    2476             :     Assert(rti > 0);
    2477             : 
    2478             :     /*
    2479             :      * Need to run a recheck subquery.  Initialize or reinitialize EPQ state.
    2480             :      */
    2481         254 :     EvalPlanQualBegin(epqstate);
    2482             : 
    2483             :     /*
    2484             :      * Callers will often use the EvalPlanQualSlot to store the tuple to avoid
    2485             :      * an unnecessary copy.
    2486             :      */
    2487         254 :     testslot = EvalPlanQualSlot(epqstate, relation, rti);
    2488         254 :     if (testslot != inputslot)
    2489          12 :         ExecCopySlot(testslot, inputslot);
    2490             : 
    2491             :     /*
    2492             :      * Mark that an EPQ tuple is available for this relation.  (If there is
    2493             :      * more than one result relation, the others remain marked as having no
    2494             :      * tuple available.)
    2495             :      */
    2496         254 :     epqstate->relsubs_done[rti - 1] = false;
    2497         254 :     epqstate->relsubs_blocked[rti - 1] = false;
    2498             : 
    2499             :     /*
    2500             :      * Run the EPQ query.  We assume it will return at most one tuple.
    2501             :      */
    2502         254 :     slot = EvalPlanQualNext(epqstate);
    2503             : 
    2504             :     /*
    2505             :      * If we got a tuple, force the slot to materialize the tuple so that it
    2506             :      * is not dependent on any local state in the EPQ query (in particular,
    2507             :      * it's highly likely that the slot contains references to any pass-by-ref
    2508             :      * datums that may be present in copyTuple).  As with the next step, this
    2509             :      * is to guard against early re-use of the EPQ query.
    2510             :      */
    2511         254 :     if (!TupIsNull(slot))
    2512         186 :         ExecMaterializeSlot(slot);
    2513             : 
    2514             :     /*
    2515             :      * Clear out the test tuple, and mark that no tuple is available here.
    2516             :      * This is needed in case the EPQ state is re-used to test a tuple for a
    2517             :      * different target relation.
    2518             :      */
    2519         254 :     ExecClearTuple(testslot);
    2520         254 :     epqstate->relsubs_blocked[rti - 1] = true;
    2521             : 
    2522         254 :     return slot;
    2523             : }
    2524             : 
    2525             : /*
    2526             :  * EvalPlanQualInit -- initialize during creation of a plan state node
    2527             :  * that might need to invoke EPQ processing.
    2528             :  *
    2529             :  * If the caller intends to use EvalPlanQual(), resultRelations should be
    2530             :  * a list of RT indexes of potential target relations for EvalPlanQual(),
    2531             :  * and we will arrange that the other listed relations don't return any
    2532             :  * tuple during an EvalPlanQual() call.  Otherwise resultRelations
    2533             :  * should be NIL.
    2534             :  *
    2535             :  * Note: subplan/auxrowmarks can be NULL/NIL if they will be set later
    2536             :  * with EvalPlanQualSetPlan.
    2537             :  */
    2538             : void
    2539      270640 : EvalPlanQualInit(EPQState *epqstate, EState *parentestate,
    2540             :                  Plan *subplan, List *auxrowmarks,
    2541             :                  int epqParam, List *resultRelations)
    2542             : {
    2543      270640 :     Index       rtsize = parentestate->es_range_table_size;
    2544             : 
    2545             :     /* initialize data not changing over EPQState's lifetime */
    2546      270640 :     epqstate->parentestate = parentestate;
    2547      270640 :     epqstate->epqParam = epqParam;
    2548      270640 :     epqstate->resultRelations = resultRelations;
    2549             : 
    2550             :     /*
    2551             :      * Allocate space to reference a slot for each potential rti - do so now
    2552             :      * rather than in EvalPlanQualBegin(), as done for other dynamically
    2553             :      * allocated resources, so EvalPlanQualSlot() can be used to hold tuples
    2554             :      * that *may* need EPQ later, without forcing the overhead of
    2555             :      * EvalPlanQualBegin().
    2556             :      */
    2557      270640 :     epqstate->tuple_table = NIL;
    2558      270640 :     epqstate->relsubs_slot = (TupleTableSlot **)
    2559      270640 :         palloc0(rtsize * sizeof(TupleTableSlot *));
    2560             : 
    2561             :     /* ... and remember data that EvalPlanQualBegin will need */
    2562      270640 :     epqstate->plan = subplan;
    2563      270640 :     epqstate->arowMarks = auxrowmarks;
    2564             : 
    2565             :     /* ... and mark the EPQ state inactive */
    2566      270640 :     epqstate->origslot = NULL;
    2567      270640 :     epqstate->recheckestate = NULL;
    2568      270640 :     epqstate->recheckplanstate = NULL;
    2569      270640 :     epqstate->relsubs_rowmark = NULL;
    2570      270640 :     epqstate->relsubs_done = NULL;
    2571      270640 :     epqstate->relsubs_blocked = NULL;
    2572      270640 : }
    2573             : 
    2574             : /*
    2575             :  * EvalPlanQualSetPlan -- set or change subplan of an EPQState.
    2576             :  *
    2577             :  * We used to need this so that ModifyTable could deal with multiple subplans.
    2578             :  * It could now be refactored out of existence.
    2579             :  */
    2580             : void
    2581      118002 : EvalPlanQualSetPlan(EPQState *epqstate, Plan *subplan, List *auxrowmarks)
    2582             : {
    2583             :     /* If we have a live EPQ query, shut it down */
    2584      118002 :     EvalPlanQualEnd(epqstate);
    2585             :     /* And set/change the plan pointer */
    2586      118002 :     epqstate->plan = subplan;
    2587             :     /* The rowmarks depend on the plan, too */
    2588      118002 :     epqstate->arowMarks = auxrowmarks;
    2589      118002 : }
    2590             : 
    2591             : /*
    2592             :  * Return, and create if necessary, a slot for an EPQ test tuple.
    2593             :  *
    2594             :  * Note this only requires EvalPlanQualInit() to have been called,
    2595             :  * EvalPlanQualBegin() is not necessary.
    2596             :  */
    2597             : TupleTableSlot *
    2598       13096 : EvalPlanQualSlot(EPQState *epqstate,
    2599             :                  Relation relation, Index rti)
    2600             : {
    2601             :     TupleTableSlot **slot;
    2602             : 
    2603             :     Assert(relation);
    2604             :     Assert(rti > 0 && rti <= epqstate->parentestate->es_range_table_size);
    2605       13096 :     slot = &epqstate->relsubs_slot[rti - 1];
    2606             : 
    2607       13096 :     if (*slot == NULL)
    2608             :     {
    2609             :         MemoryContext oldcontext;
    2610             : 
    2611        5824 :         oldcontext = MemoryContextSwitchTo(epqstate->parentestate->es_query_cxt);
    2612        5824 :         *slot = table_slot_create(relation, &epqstate->tuple_table);
    2613        5824 :         MemoryContextSwitchTo(oldcontext);
    2614             :     }
    2615             : 
    2616       13096 :     return *slot;
    2617             : }
    2618             : 
    2619             : /*
    2620             :  * Fetch the current row value for a non-locked relation, identified by rti,
    2621             :  * that needs to be scanned by an EvalPlanQual operation.  origslot must have
    2622             :  * been set to contain the current result row (top-level row) that we need to
    2623             :  * recheck.  Returns true if a substitution tuple was found, false if not.
    2624             :  */
    2625             : bool
    2626          34 : EvalPlanQualFetchRowMark(EPQState *epqstate, Index rti, TupleTableSlot *slot)
    2627             : {
    2628          34 :     ExecAuxRowMark *earm = epqstate->relsubs_rowmark[rti - 1];
    2629          34 :     ExecRowMark *erm = earm->rowmark;
    2630             :     Datum       datum;
    2631             :     bool        isNull;
    2632             : 
    2633             :     Assert(earm != NULL);
    2634             :     Assert(epqstate->origslot != NULL);
    2635             : 
    2636          34 :     if (RowMarkRequiresRowShareLock(erm->markType))
    2637           0 :         elog(ERROR, "EvalPlanQual doesn't support locking rowmarks");
    2638             : 
    2639             :     /* if child rel, must check whether it produced this row */
    2640          34 :     if (erm->rti != erm->prti)
    2641             :     {
    2642             :         Oid         tableoid;
    2643             : 
    2644           0 :         datum = ExecGetJunkAttribute(epqstate->origslot,
    2645           0 :                                      earm->toidAttNo,
    2646             :                                      &isNull);
    2647             :         /* non-locked rels could be on the inside of outer joins */
    2648           0 :         if (isNull)
    2649           0 :             return false;
    2650             : 
    2651           0 :         tableoid = DatumGetObjectId(datum);
    2652             : 
    2653             :         Assert(OidIsValid(erm->relid));
    2654           0 :         if (tableoid != erm->relid)
    2655             :         {
    2656             :             /* this child is inactive right now */
    2657           0 :             return false;
    2658             :         }
    2659             :     }
    2660             : 
    2661          34 :     if (erm->markType == ROW_MARK_REFERENCE)
    2662             :     {
    2663             :         Assert(erm->relation != NULL);
    2664             : 
    2665             :         /* fetch the tuple's ctid */
    2666          26 :         datum = ExecGetJunkAttribute(epqstate->origslot,
    2667          26 :                                      earm->ctidAttNo,
    2668             :                                      &isNull);
    2669             :         /* non-locked rels could be on the inside of outer joins */
    2670          26 :         if (isNull)
    2671           0 :             return false;
    2672             : 
    2673             :         /* fetch requests on foreign tables must be passed to their FDW */
    2674          26 :         if (erm->relation->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
    2675             :         {
    2676             :             FdwRoutine *fdwroutine;
    2677           0 :             bool        updated = false;
    2678             : 
    2679           0 :             fdwroutine = GetFdwRoutineForRelation(erm->relation, false);
    2680             :             /* this should have been checked already, but let's be safe */
    2681           0 :             if (fdwroutine->RefetchForeignRow == NULL)
    2682           0 :                 ereport(ERROR,
    2683             :                         (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    2684             :                          errmsg("cannot lock rows in foreign table \"%s\"",
    2685             :                                 RelationGetRelationName(erm->relation))));
    2686             : 
    2687           0 :             fdwroutine->RefetchForeignRow(epqstate->recheckestate,
    2688             :                                           erm,
    2689             :                                           datum,
    2690             :                                           slot,
    2691             :                                           &updated);
    2692           0 :             if (TupIsNull(slot))
    2693           0 :                 elog(ERROR, "failed to fetch tuple for EvalPlanQual recheck");
    2694             : 
    2695             :             /*
    2696             :              * Ideally we'd insist on updated == false here, but that assumes
    2697             :              * that FDWs can track that exactly, which they might not be able
    2698             :              * to.  So just ignore the flag.
    2699             :              */
    2700           0 :             return true;
    2701             :         }
    2702             :         else
    2703             :         {
    2704             :             /* ordinary table, fetch the tuple */
    2705          26 :             if (!table_tuple_fetch_row_version(erm->relation,
    2706          26 :                                                (ItemPointer) DatumGetPointer(datum),
    2707             :                                                SnapshotAny, slot))
    2708           0 :                 elog(ERROR, "failed to fetch tuple for EvalPlanQual recheck");
    2709          26 :             return true;
    2710             :         }
    2711             :     }
    2712             :     else
    2713             :     {
    2714             :         Assert(erm->markType == ROW_MARK_COPY);
    2715             : 
    2716             :         /* fetch the whole-row Var for the relation */
    2717           8 :         datum = ExecGetJunkAttribute(epqstate->origslot,
    2718           8 :                                      earm->wholeAttNo,
    2719             :                                      &isNull);
    2720             :         /* non-locked rels could be on the inside of outer joins */
    2721           8 :         if (isNull)
    2722           0 :             return false;
    2723             : 
    2724           8 :         ExecStoreHeapTupleDatum(datum, slot);
    2725           8 :         return true;
    2726             :     }
    2727             : }
    2728             : 
    2729             : /*
    2730             :  * Fetch the next row (if any) from EvalPlanQual testing
    2731             :  *
    2732             :  * (In practice, there should never be more than one row...)
    2733             :  */
    2734             : TupleTableSlot *
    2735         308 : EvalPlanQualNext(EPQState *epqstate)
    2736             : {
    2737             :     MemoryContext oldcontext;
    2738             :     TupleTableSlot *slot;
    2739             : 
    2740         308 :     oldcontext = MemoryContextSwitchTo(epqstate->recheckestate->es_query_cxt);
    2741         308 :     slot = ExecProcNode(epqstate->recheckplanstate);
    2742         308 :     MemoryContextSwitchTo(oldcontext);
    2743             : 
    2744         308 :     return slot;
    2745             : }
    2746             : 
    2747             : /*
    2748             :  * Initialize or reset an EvalPlanQual state tree
    2749             :  */
    2750             : void
    2751         364 : EvalPlanQualBegin(EPQState *epqstate)
    2752             : {
    2753         364 :     EState     *parentestate = epqstate->parentestate;
    2754         364 :     EState     *recheckestate = epqstate->recheckestate;
    2755             : 
    2756         364 :     if (recheckestate == NULL)
    2757             :     {
    2758             :         /* First time through, so create a child EState */
    2759         220 :         EvalPlanQualStart(epqstate, epqstate->plan);
    2760             :     }
    2761             :     else
    2762             :     {
    2763             :         /*
    2764             :          * We already have a suitable child EPQ tree, so just reset it.
    2765             :          */
    2766         144 :         Index       rtsize = parentestate->es_range_table_size;
    2767         144 :         PlanState  *rcplanstate = epqstate->recheckplanstate;
    2768             : 
    2769             :         /*
    2770             :          * Reset the relsubs_done[] flags to equal relsubs_blocked[], so that
    2771             :          * the EPQ run will never attempt to fetch tuples from blocked target
    2772             :          * relations.
    2773             :          */
    2774         144 :         memcpy(epqstate->relsubs_done, epqstate->relsubs_blocked,
    2775             :                rtsize * sizeof(bool));
    2776             : 
    2777             :         /* Recopy current values of parent parameters */
    2778         144 :         if (parentestate->es_plannedstmt->paramExecTypes != NIL)
    2779             :         {
    2780             :             int         i;
    2781             : 
    2782             :             /*
    2783             :              * Force evaluation of any InitPlan outputs that could be needed
    2784             :              * by the subplan, just in case they got reset since
    2785             :              * EvalPlanQualStart (see comments therein).
    2786             :              */
    2787         144 :             ExecSetParamPlanMulti(rcplanstate->plan->extParam,
    2788         144 :                                   GetPerTupleExprContext(parentestate));
    2789             : 
    2790         144 :             i = list_length(parentestate->es_plannedstmt->paramExecTypes);
    2791             : 
    2792         306 :             while (--i >= 0)
    2793             :             {
    2794             :                 /* copy value if any, but not execPlan link */
    2795         162 :                 recheckestate->es_param_exec_vals[i].value =
    2796         162 :                     parentestate->es_param_exec_vals[i].value;
    2797         162 :                 recheckestate->es_param_exec_vals[i].isnull =
    2798         162 :                     parentestate->es_param_exec_vals[i].isnull;
    2799             :             }
    2800             :         }
    2801             : 
    2802             :         /*
    2803             :          * Mark child plan tree as needing rescan at all scan nodes.  The
    2804             :          * first ExecProcNode will take care of actually doing the rescan.
    2805             :          */
    2806         144 :         rcplanstate->chgParam = bms_add_member(rcplanstate->chgParam,
    2807             :                                                epqstate->epqParam);
    2808             :     }
    2809         364 : }
    2810             : 
    2811             : /*
    2812             :  * Start execution of an EvalPlanQual plan tree.
    2813             :  *
    2814             :  * This is a cut-down version of ExecutorStart(): we copy some state from
    2815             :  * the top-level estate rather than initializing it fresh.
    2816             :  */
    2817             : static void
    2818         220 : EvalPlanQualStart(EPQState *epqstate, Plan *planTree)
    2819             : {
    2820         220 :     EState     *parentestate = epqstate->parentestate;
    2821         220 :     Index       rtsize = parentestate->es_range_table_size;
    2822             :     EState     *rcestate;
    2823             :     MemoryContext oldcontext;
    2824             :     ListCell   *l;
    2825             : 
    2826         220 :     epqstate->recheckestate = rcestate = CreateExecutorState();
    2827             : 
    2828         220 :     oldcontext = MemoryContextSwitchTo(rcestate->es_query_cxt);
    2829             : 
    2830             :     /* signal that this is an EState for executing EPQ */
    2831         220 :     rcestate->es_epq_active = epqstate;
    2832             : 
    2833             :     /*
    2834             :      * Child EPQ EStates share the parent's copy of unchanging state such as
    2835             :      * the snapshot, rangetable, and external Param info.  They need their own
    2836             :      * copies of local state, including a tuple table, es_param_exec_vals,
    2837             :      * result-rel info, etc.
    2838             :      */
    2839         220 :     rcestate->es_direction = ForwardScanDirection;
    2840         220 :     rcestate->es_snapshot = parentestate->es_snapshot;
    2841         220 :     rcestate->es_crosscheck_snapshot = parentestate->es_crosscheck_snapshot;
    2842         220 :     rcestate->es_range_table = parentestate->es_range_table;
    2843         220 :     rcestate->es_range_table_size = parentestate->es_range_table_size;
    2844         220 :     rcestate->es_relations = parentestate->es_relations;
    2845         220 :     rcestate->es_rowmarks = parentestate->es_rowmarks;
    2846         220 :     rcestate->es_rteperminfos = parentestate->es_rteperminfos;
    2847         220 :     rcestate->es_plannedstmt = parentestate->es_plannedstmt;
    2848         220 :     rcestate->es_junkFilter = parentestate->es_junkFilter;
    2849         220 :     rcestate->es_output_cid = parentestate->es_output_cid;
    2850         220 :     rcestate->es_queryEnv = parentestate->es_queryEnv;
    2851             : 
    2852             :     /*
    2853             :      * ResultRelInfos needed by subplans are initialized from scratch when the
    2854             :      * subplans themselves are initialized.
    2855             :      */
    2856         220 :     rcestate->es_result_relations = NULL;
    2857             :     /* es_trig_target_relations must NOT be copied */
    2858         220 :     rcestate->es_top_eflags = parentestate->es_top_eflags;
    2859         220 :     rcestate->es_instrument = parentestate->es_instrument;
    2860             :     /* es_auxmodifytables must NOT be copied */
    2861             : 
    2862             :     /*
    2863             :      * The external param list is simply shared from parent.  The internal
    2864             :      * param workspace has to be local state, but we copy the initial values
    2865             :      * from the parent, so as to have access to any param values that were
    2866             :      * already set from other parts of the parent's plan tree.
    2867             :      */
    2868         220 :     rcestate->es_param_list_info = parentestate->es_param_list_info;
    2869         220 :     if (parentestate->es_plannedstmt->paramExecTypes != NIL)
    2870             :     {
    2871             :         int         i;
    2872             : 
    2873             :         /*
    2874             :          * Force evaluation of any InitPlan outputs that could be needed by
    2875             :          * the subplan.  (With more complexity, maybe we could postpone this
    2876             :          * till the subplan actually demands them, but it doesn't seem worth
    2877             :          * the trouble; this is a corner case already, since usually the
    2878             :          * InitPlans would have been evaluated before reaching EvalPlanQual.)
    2879             :          *
    2880             :          * This will not touch output params of InitPlans that occur somewhere
    2881             :          * within the subplan tree, only those that are attached to the
    2882             :          * ModifyTable node or above it and are referenced within the subplan.
    2883             :          * That's OK though, because the planner would only attach such
    2884             :          * InitPlans to a lower-level SubqueryScan node, and EPQ execution
    2885             :          * will not descend into a SubqueryScan.
    2886             :          *
    2887             :          * The EState's per-output-tuple econtext is sufficiently short-lived
    2888             :          * for this, since it should get reset before there is any chance of
    2889             :          * doing EvalPlanQual again.
    2890             :          */
    2891         220 :         ExecSetParamPlanMulti(planTree->extParam,
    2892         220 :                               GetPerTupleExprContext(parentestate));
    2893             : 
    2894             :         /* now make the internal param workspace ... */
    2895         220 :         i = list_length(parentestate->es_plannedstmt->paramExecTypes);
    2896         220 :         rcestate->es_param_exec_vals = (ParamExecData *)
    2897         220 :             palloc0(i * sizeof(ParamExecData));
    2898             :         /* ... and copy down all values, whether really needed or not */
    2899         538 :         while (--i >= 0)
    2900             :         {
    2901             :             /* copy value if any, but not execPlan link */
    2902         318 :             rcestate->es_param_exec_vals[i].value =
    2903         318 :                 parentestate->es_param_exec_vals[i].value;
    2904         318 :             rcestate->es_param_exec_vals[i].isnull =
    2905         318 :                 parentestate->es_param_exec_vals[i].isnull;
    2906             :         }
    2907             :     }
    2908             : 
    2909             :     /*
    2910             :      * Initialize private state information for each SubPlan.  We must do this
    2911             :      * before running ExecInitNode on the main query tree, since
    2912             :      * ExecInitSubPlan expects to be able to find these entries. Some of the
    2913             :      * SubPlans might not be used in the part of the plan tree we intend to
    2914             :      * run, but since it's not easy to tell which, we just initialize them
    2915             :      * all.
    2916             :      */
    2917             :     Assert(rcestate->es_subplanstates == NIL);
    2918         276 :     foreach(l, parentestate->es_plannedstmt->subplans)
    2919             :     {
    2920          56 :         Plan       *subplan = (Plan *) lfirst(l);
    2921             :         PlanState  *subplanstate;
    2922             : 
    2923          56 :         subplanstate = ExecInitNode(subplan, rcestate, 0);
    2924          56 :         rcestate->es_subplanstates = lappend(rcestate->es_subplanstates,
    2925             :                                              subplanstate);
    2926             :     }
    2927             : 
    2928             :     /*
    2929             :      * Build an RTI indexed array of rowmarks, so that
    2930             :      * EvalPlanQualFetchRowMark() can efficiently access the to be fetched
    2931             :      * rowmark.
    2932             :      */
    2933         220 :     epqstate->relsubs_rowmark = (ExecAuxRowMark **)
    2934         220 :         palloc0(rtsize * sizeof(ExecAuxRowMark *));
    2935         244 :     foreach(l, epqstate->arowMarks)
    2936             :     {
    2937          24 :         ExecAuxRowMark *earm = (ExecAuxRowMark *) lfirst(l);
    2938             : 
    2939          24 :         epqstate->relsubs_rowmark[earm->rowmark->rti - 1] = earm;
    2940             :     }
    2941             : 
    2942             :     /*
    2943             :      * Initialize per-relation EPQ tuple states.  Result relations, if any,
    2944             :      * get marked as blocked; others as not-fetched.
    2945             :      */
    2946         220 :     epqstate->relsubs_done = palloc_array(bool, rtsize);
    2947         220 :     epqstate->relsubs_blocked = palloc0_array(bool, rtsize);
    2948             : 
    2949         442 :     foreach(l, epqstate->resultRelations)
    2950             :     {
    2951         222 :         int         rtindex = lfirst_int(l);
    2952             : 
    2953             :         Assert(rtindex > 0 && rtindex <= rtsize);
    2954         222 :         epqstate->relsubs_blocked[rtindex - 1] = true;
    2955             :     }
    2956             : 
    2957         220 :     memcpy(epqstate->relsubs_done, epqstate->relsubs_blocked,
    2958             :            rtsize * sizeof(bool));
    2959             : 
    2960             :     /*
    2961             :      * Initialize the private state information for all the nodes in the part
    2962             :      * of the plan tree we need to run.  This opens files, allocates storage
    2963             :      * and leaves us ready to start processing tuples.
    2964             :      */
    2965         220 :     epqstate->recheckplanstate = ExecInitNode(planTree, rcestate, 0);
    2966             : 
    2967         220 :     MemoryContextSwitchTo(oldcontext);
    2968         220 : }
    2969             : 
    2970             : /*
    2971             :  * EvalPlanQualEnd -- shut down at termination of parent plan state node,
    2972             :  * or if we are done with the current EPQ child.
    2973             :  *
    2974             :  * This is a cut-down version of ExecutorEnd(); basically we want to do most
    2975             :  * of the normal cleanup, but *not* close result relations (which we are
    2976             :  * just sharing from the outer query).  We do, however, have to close any
    2977             :  * result and trigger target relations that got opened, since those are not
    2978             :  * shared.  (There probably shouldn't be any of the latter, but just in
    2979             :  * case...)
    2980             :  */
    2981             : void
    2982      387308 : EvalPlanQualEnd(EPQState *epqstate)
    2983             : {
    2984      387308 :     EState     *estate = epqstate->recheckestate;
    2985             :     Index       rtsize;
    2986             :     MemoryContext oldcontext;
    2987             :     ListCell   *l;
    2988             : 
    2989      387308 :     rtsize = epqstate->parentestate->es_range_table_size;
    2990             : 
    2991             :     /*
    2992             :      * We may have a tuple table, even if EPQ wasn't started, because we allow
    2993             :      * use of EvalPlanQualSlot() without calling EvalPlanQualBegin().
    2994             :      */
    2995      387308 :     if (epqstate->tuple_table != NIL)
    2996             :     {
    2997        5580 :         memset(epqstate->relsubs_slot, 0,
    2998             :                rtsize * sizeof(TupleTableSlot *));
    2999        5580 :         ExecResetTupleTable(epqstate->tuple_table, true);
    3000        5580 :         epqstate->tuple_table = NIL;
    3001             :     }
    3002             : 
    3003             :     /* EPQ wasn't started, nothing further to do */
    3004      387308 :     if (estate == NULL)
    3005      387100 :         return;
    3006             : 
    3007         208 :     oldcontext = MemoryContextSwitchTo(estate->es_query_cxt);
    3008             : 
    3009         208 :     ExecEndNode(epqstate->recheckplanstate);
    3010             : 
    3011         258 :     foreach(l, estate->es_subplanstates)
    3012             :     {
    3013          50 :         PlanState  *subplanstate = (PlanState *) lfirst(l);
    3014             : 
    3015          50 :         ExecEndNode(subplanstate);
    3016             :     }
    3017             : 
    3018             :     /* throw away the per-estate tuple table, some node may have used it */
    3019         208 :     ExecResetTupleTable(estate->es_tupleTable, false);
    3020             : 
    3021             :     /* Close any result and trigger target relations attached to this EState */
    3022         208 :     ExecCloseResultRelations(estate);
    3023             : 
    3024         208 :     MemoryContextSwitchTo(oldcontext);
    3025             : 
    3026         208 :     FreeExecutorState(estate);
    3027             : 
    3028             :     /* Mark EPQState idle */
    3029         208 :     epqstate->origslot = NULL;
    3030         208 :     epqstate->recheckestate = NULL;
    3031         208 :     epqstate->recheckplanstate = NULL;
    3032         208 :     epqstate->relsubs_rowmark = NULL;
    3033         208 :     epqstate->relsubs_done = NULL;
    3034         208 :     epqstate->relsubs_blocked = NULL;
    3035             : }

Generated by: LCOV version 1.14