]> granicus.if.org Git - postgresql/commitdiff
Update grammar
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 29 Dec 2013 01:54:23 +0000 (20:54 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 29 Dec 2013 01:54:23 +0000 (20:54 -0500)
From: Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp>

src/backend/utils/mmgr/README

index d52e9597844e3f663d86e14f75d47dafaf37f481..45e610dd061f01fbc9f94222c0857da23da0076f 100644 (file)
@@ -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