diff options
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/execMain.c | 2 | ||||
-rw-r--r-- | src/backend/executor/execPartition.c | 4 | ||||
-rw-r--r-- | src/backend/executor/nodeModifyTable.c | 2 | ||||
-rw-r--r-- | src/backend/executor/nodeSeqscan.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 2da848970be..7230f968101 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -1861,7 +1861,7 @@ ExecRelCheck(ResultRelInfo *resultRelInfo, MemoryContext oldContext; /* - * CheckConstraintFetch let this pass with only a warning, but now we + * CheckNNConstraintFetch let this pass with only a warning, but now we * should fail rather than possibly failing to enforce an important * constraint. */ diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index 5a77c253826..9435cc21fe7 100644 --- a/src/backend/executor/execPartition.c +++ b/src/backend/executor/execPartition.c @@ -1778,7 +1778,7 @@ adjust_partition_colnos_using_map(List *colnos, AttrMap *attrMap) * Updates the PartitionPruneState found at given part_prune_index in * EState.es_part_prune_states for use during "exec" pruning if required. * Also returns the set of subplans to initialize that would be stored at - * part_prune_index in EState.es_part_prune_result by + * part_prune_index in EState.es_part_prune_results by * ExecDoInitialPruning(). Maps in PartitionPruneState are updated to * account for initial pruning possibly having eliminated some of the * subplans. @@ -2109,7 +2109,7 @@ CreatePartitionPruneState(EState *estate, PartitionPruneInfo *pruneinfo, */ partrel = ExecGetRangeTableRelation(estate, pinfo->rtindex, false); - /* Remember for InitExecPartitionPruneContext(). */ + /* Remember for InitExecPartitionPruneContexts(). */ pprune->partrel = partrel; partkey = RelationGetPartitionKey(partrel); diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c index 333cbf78343..46d533b7288 100644 --- a/src/backend/executor/nodeModifyTable.c +++ b/src/backend/executor/nodeModifyTable.c @@ -1311,7 +1311,7 @@ ExecInsert(ModifyTableContext *context, /* * Convert the OLD tuple to the new partition's format/slot, if - * needed. Note that ExceDelete() already converted it to the + * needed. Note that ExecDelete() already converted it to the * root's partition's format/slot. */ oldSlot = context->cpDeletedSlot; diff --git a/src/backend/executor/nodeSeqscan.c b/src/backend/executor/nodeSeqscan.c index 6f9e991eeae..ed35c58c2c3 100644 --- a/src/backend/executor/nodeSeqscan.c +++ b/src/backend/executor/nodeSeqscan.c @@ -100,7 +100,7 @@ SeqRecheck(SeqScanState *node, TupleTableSlot *slot) * ExecSeqScan(node) * * Scans the relation sequentially and returns the next qualifying - * tuple. This variant is used when there is no es_eqp_active, no qual + * tuple. This variant is used when there is no es_epq_active, no qual * and no projection. Passing const-NULLs for these to ExecScanExtended * allows the compiler to eliminate the additional code that would * ordinarily be required for the evaluation of these. |