aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>2001-03-24 02:35:25 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>2001-03-24 02:35:25 +0000
commit15dc7d11ea96c5ae805f9de35ebae2b13b6416ad (patch)
tree7b09772922ace7e404e353f83177eaf4bf76e720
parenteb3ef4e0707f2f093e54c9bb09f71e6456f0ae4a (diff)
downloadpostgresql-15dc7d11ea96c5ae805f9de35ebae2b13b6416ad.tar.gz
postgresql-15dc7d11ea96c5ae805f9de35ebae2b13b6416ad.zip
Fix up wording slightly. No change in content.
-rw-r--r--doc/src/sgml/ref/create_type.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_type.sgml b/doc/src/sgml/ref/create_type.sgml
index 76dd90552ca..cd00b357d3c 100644
--- a/doc/src/sgml/ref/create_type.sgml
+++ b/doc/src/sgml/ref/create_type.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_type.sgml,v 1.18 2001/03/06 18:11:39 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_type.sgml,v 1.19 2001/03/24 02:35:25 thomas Exp $
Postgres documentation
-->
@@ -298,11 +298,11 @@ CREATE
<para>
The <replaceable class="parameter">storage</replaceable> keyword
- allows selection of TOAST for variable-length data types
+ allows selection of storage strategies for variable-length data types
(only <literal>plain</literal> is allowed for fixed-length types).
<literal>plain</literal> disables TOAST for the data type: it will always
be stored in-line and not compressed.
- <literal>extended</literal> is full TOAST capability: the system will
+ <literal>extended</literal> gives full TOAST capability: the system will
first try to compress a long data value, and will move the value out of
the main table row if it's still too long.
<literal>external</literal> allows the value to be moved out of the main