mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Remove unnecessary word in a comment
Relations opened by the executor are only closed once in ExecCloseRangeTableRelations(), so the word "again" in the comment for ExecGetRangeTableRelation() is misleading and unnecessary. Discussion: https://postgr.es/m/CA+HiwqHnw-zR+u060i3jp4ky5UR0CjByRFQz50oZ05de7wUg=Q@mail.gmail.com Backpatch-through: 12
This commit is contained in:
		@@ -782,7 +782,7 @@ ExecInitRangeTable(EState *estate, List *rangeTable)
 | 
				
			|||||||
 * ExecGetRangeTableRelation
 | 
					 * ExecGetRangeTableRelation
 | 
				
			||||||
 *		Open the Relation for a range table entry, if not already done
 | 
					 *		Open the Relation for a range table entry, if not already done
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * The Relations will be closed again in ExecEndPlan().
 | 
					 * The Relations will be closed in ExecEndPlan().
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
Relation
 | 
					Relation
 | 
				
			||||||
ExecGetRangeTableRelation(EState *estate, Index rti)
 | 
					ExecGetRangeTableRelation(EState *estate, Index rti)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user