aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2013-12-28 20:54:23 -0500
committerPeter Eisentraut <peter_e@gmx.net>2013-12-28 20:54:23 -0500
commit71812a98cb8cfbcf9c3376e0c93fcb4c8e373a54 (patch)
treedfc432b722d4f48bcd5fac9216c6098b99780209
parentb986270bd4bec964d239cd73f7aaf5131a6996fa (diff)
downloadpostgresql-71812a98cb8cfbcf9c3376e0c93fcb4c8e373a54.tar.gz
postgresql-71812a98cb8cfbcf9c3376e0c93fcb4c8e373a54.zip
Update grammar
From: Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp>
-rw-r--r--src/backend/utils/mmgr/README6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/mmgr/README b/src/backend/utils/mmgr/README
index d52e9597844..45e610dd061 100644
--- a/src/backend/utils/mmgr/README
+++ b/src/backend/utils/mmgr/README
@@ -6,9 +6,9 @@ Notes About Memory Allocation Redesign
Up through version 7.0, Postgres had serious problems with memory leakage
during large queries that process a lot of pass-by-reference data. There
was no provision for recycling memory until end of query. This needed to be
-fixed, even more so with the advent of TOAST which will allowed very large
-chunks of data to be passed around in the system. This document describes
-the new memory management system implemented in 7.1.
+fixed, even more so with the advent of TOAST which allows very large chunks
+of data to be passed around in the system. This document describes the new
+memory management system implemented in 7.1.
Background