aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2024-08-01 17:45:04 +0900
committerEtsuro Fujita <efujita@postgresql.org>2024-08-01 17:45:04 +0900
commitd7bc9c9d04ad6abe80006bfbe93cb359abd31dee (patch)
tree0d88827353edeb124d1bbc6c2ff06a59ac70b80f /src
parentafbf32fa1aa87f710b623cbdf746c55b4799574e (diff)
downloadpostgresql-d7bc9c9d04ad6abe80006bfbe93cb359abd31dee.tar.gz
postgresql-d7bc9c9d04ad6abe80006bfbe93cb359abd31dee.zip
Update comment in portal.h.
We store tuples into the portal's tuple store for a PORTAL_ONE_MOD_WITH query as well. Back-patch to all supported branches. Reviewed by Andy Fan. Discussion: https://postgr.es/m/CAPmGK14HVYBZYZtHabjeCd-e31VT%3Dwx6rQNq8QfehywLcpZ2Hw%40mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/include/utils/portal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/portal.h b/src/include/utils/portal.h
index aeddbdafe56..65002dd0120 100644
--- a/src/include/utils/portal.h
+++ b/src/include/utils/portal.h
@@ -170,9 +170,9 @@ typedef struct PortalData
Snapshot portalSnapshot; /* active snapshot, or NULL if none */
/*
- * Where we store tuples for a held cursor or a PORTAL_ONE_RETURNING or
- * PORTAL_UTIL_SELECT query. (A cursor held past the end of its
- * transaction no longer has any active executor state.)
+ * Where we store tuples for a held cursor or a PORTAL_ONE_RETURNING,
+ * PORTAL_ONE_MOD_WITH, or PORTAL_UTIL_SELECT query. (A cursor held past
+ * the end of its transaction no longer has any active executor state.)
*/
Tuplestorestate *holdStore; /* store for holdable cursors */
MemoryContext holdContext; /* memory containing holdStore */