summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2025-11-06 12:25:00 +0900
committerEtsuro Fujita <efujita@postgresql.org>2025-11-06 12:25:00 +0900
commita3ebec4e4cf6625a2bab4db2830d57d25a34ba1f (patch)
tree32e9966c1602123b5fef07b29b2d68e7ca02f75a /src/backend
parentc3eec94fc1a02a67ee51cdd781f24f6f28ad5b36 (diff)
Update obsolete comment in ExecScanReScan().
Commit 27cc7cd2b removed the epqScanDone flag from the EState struct, and instead added an equivalent flag named relsubs_done to the EPQState struct; but it failed to update this comment. Author: Etsuro Fujita <etsuro.fujita@gmail.com> Discussion: https://postgr.es/m/CAPmGK152zJ3fU5avDT5udfL0namrDeVfMTL3dxdOXw28SOrycg%40mail.gmail.com Backpatch-through: 13
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/executor/execScan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execScan.c b/src/backend/executor/execScan.c
index 90726949a87..31ed4783c1d 100644
--- a/src/backend/executor/execScan.c
+++ b/src/backend/executor/execScan.c
@@ -134,7 +134,7 @@ ExecScanReScan(ScanState *node)
/*
* If an FDW or custom scan provider has replaced the join with a
- * scan, there are multiple RTIs; reset the epqScanDone flag for
+ * scan, there are multiple RTIs; reset the relsubs_done flag for
* all of them.
*/
if (IsA(node->ps.plan, ForeignScan))