aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-04-24 15:07:04 +0900
committerMichael Paquier <michael@paquier.xyz>2021-04-24 15:07:04 +0900
commit9b5558e7ad4706bbd53947e5b4d7c06e150390a5 (patch)
tree6c90df293d0cf599b678d08f2c0b35fbed27003b /src/backend/executor/execMain.c
parent0d0049c58b4970183a102fc1f7dc1e9bef2a7149 (diff)
downloadpostgresql-9b5558e7ad4706bbd53947e5b4d7c06e150390a5.tar.gz
postgresql-9b5558e7ad4706bbd53947e5b4d7c06e150390a5.zip
Fix come comments in execMain.c
1375422 has refactored this area of the executor code, and some comments went out-of-sync. Author: Yukun Wang Reviewed-by: Amul Sul Discussion: https://postgr.es/m/OS0PR01MB60033394FCAEF79B98F078F5B4459@OS0PR01MB6003.jpnprd01.prod.outlook.com
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r--src/backend/executor/execMain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c
index 8d0f3de76ed..df3d7f9a8bc 100644
--- a/src/backend/executor/execMain.c
+++ b/src/backend/executor/execMain.c
@@ -1286,7 +1286,7 @@ ExecGetTriggerResultRel(EState *estate, Oid relid)
Relation rel;
MemoryContext oldcontext;
- /* First, search through the query result relations */
+ /* Search through the query result relations */
foreach(l, estate->es_opened_result_relations)
{
rInfo = lfirst(l);
@@ -1295,8 +1295,8 @@ ExecGetTriggerResultRel(EState *estate, Oid relid)
}
/*
- * Third, search through the result relations that were created during
- * tuple routing, if any.
+ * Search through the result relations that were created during tuple
+ * routing, if any.
*/
foreach(l, estate->es_tuple_routing_result_relations)
{