diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-09-18 23:19:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-09-18 23:19:50 +0000 |
commit | dd18c57979b67c38fc48a46c01a5caf8d226d30b (patch) | |
tree | ac7dec754ea1e84f1b289877e7691ec9c7e0227d | |
parent | e328f8b0ba766dd71524cc3a484497fa2dfd02b4 (diff) | |
download | postgresql-dd18c57979b67c38fc48a46c01a5caf8d226d30b.tar.gz postgresql-dd18c57979b67c38fc48a46c01a5caf8d226d30b.zip |
Properly mention in the release notes that fillfactor controls both heap
and indexes. Other cleanups.
-rw-r--r-- | doc/src/sgml/release.sgml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index dafb5917936..ad2e10935bb 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.437 2006/09/18 23:01:43 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.438 2006/09/18 23:19:50 momjian Exp $ --> <!-- Typical markup: @@ -14,6 +14,7 @@ non-ascii convert to & escapes http://www.mountaindragon.com/html/iso.htm encode multibytes as UTF8 http://www.pemberley.com/janeinfo/latin1.html#latexta +wrap long lines For new features, add links to the documentation sections. @@ -220,14 +221,14 @@ For new features, add links to the documentation sections. <listitem> <para> - Add <literal>FILLFACTOR</> to <command>CREATE INDEX</> + Add <literal>FILLFACTOR</> to table and index creation (ITAGAKI Takahiro) </para> <para> - This provides infrastructure to allow index access methods - to accept special parameters of all kinds, but - <literal>FILLFACTOR</> is implemented first. + This adds extra free space to each heap or index page, + allowing improved performance as the database grows. This + is particularly valuable to maintain <command>CLUSTER</>ing. </para> </listitem> |