Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9b5558e

Browse files
committed
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
1 parent 0d0049c commit 9b5558e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/executor/execMain.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ ExecGetTriggerResultRel(EState *estate, Oid relid)
12861286
Relation rel;
12871287
MemoryContext oldcontext;
12881288

1289-
/* First, search through the query result relations */
1289+
/* Search through the query result relations */
12901290
foreach(l, estate->es_opened_result_relations)
12911291
{
12921292
rInfo = lfirst(l);
@@ -1295,8 +1295,8 @@ ExecGetTriggerResultRel(EState *estate, Oid relid)
12951295
}
12961296

12971297
/*
1298-
* Third, search through the result relations that were created during
1299-
* tuple routing, if any.
1298+
* Search through the result relations that were created during tuple
1299+
* routing, if any.
13001300
*/
13011301
foreach(l, estate->es_tuple_routing_result_relations)
13021302
{

0 commit comments

Comments
 (0)