diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-11-26 15:49:23 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-11-26 15:49:23 +0900 |
commit | 058ef3a1a8469bbaae6b0e6647cd031b9ca71b2d (patch) | |
tree | e0125af0af0ebf50461cbfb6752a458e1c0ca931 | |
parent | 1d7dd18686d0373289a3bf2b3669edae20875cbc (diff) | |
download | postgresql-058ef3a1a8469bbaae6b0e6647cd031b9ca71b2d.tar.gz postgresql-058ef3a1a8469bbaae6b0e6647cd031b9ca71b2d.zip |
Fix typo in documentation of toast storage
Author: Nawaz Ahmed
Discussion: https://postgr.es/m/154319327168.1315.1846953598601966513@wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/storage.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index 8ef2ac80106..bb1bf3a68ee 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -237,7 +237,7 @@ segments as well, though this is unlikely to happen in practice. <para> A table that has columns with potentially large entries will have an associated <firstterm>TOAST</firstterm> table, which is used for out-of-line storage of -field values that are too large to keep in the table rows proper. +field values that are too large to keep in the table rows properly. <structname>pg_class</structname>.<structfield>reltoastrelid</structfield> links from a table to its <acronym>TOAST</acronym> table, if any. See <xref linkend="storage-toast"/> for more information. |