aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2007-05-29 04:19:35 +0000
committerNeil Conway <neilc@samurai.com>2007-05-29 04:19:35 +0000
commite78720ff2f93dcb82484a310d86ce9875385bc20 (patch)
tree500ba61134d1fdf2c146be13768c5fa15a5cf412
parent6a6c752b08ac2d4a24811123d5c565412f75f6f4 (diff)
downloadpostgresql-e78720ff2f93dcb82484a310d86ce9875385bc20.tar.gz
postgresql-e78720ff2f93dcb82484a310d86ce9875385bc20.zip
mmgr README tweak: "either" is no longer correct. The previous wording
compared PortalContext with QueryContext, but the latter no longer exists.
-rw-r--r--src/backend/utils/mmgr/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mmgr/README b/src/backend/utils/mmgr/README
index 05353a3335d..92ffbd407cf 100644
--- a/src/backend/utils/mmgr/README
+++ b/src/backend/utils/mmgr/README
@@ -1,4 +1,4 @@
-$PostgreSQL: pgsql/src/backend/utils/mmgr/README,v 1.10 2007/03/13 00:33:42 tgl Exp $
+$PostgreSQL: pgsql/src/backend/utils/mmgr/README,v 1.11 2007/05/29 04:19:35 neilc Exp $
Notes about memory allocation redesign
--------------------------------------
@@ -201,7 +201,7 @@ have dangling pointers leading to a crash at top-level commit. An example of
data kept here is pending NOTIFY messages, which are sent at top-level commit,
but only if the generating subtransaction did not abort.
-PortalContext --- this is not actually a separate context either, but a
+PortalContext --- this is not actually a separate context, but a
global variable pointing to the per-portal context of the currently active
execution portal. This can be used if it's necessary to allocate storage
that will live just as long as the execution of the current portal requires.