pgsql: docs: Update TOAST storage docs for configurable compression. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: docs: Update TOAST storage docs for configurable compression.
Date
Msg-id E1lWOW4-0001LK-AH@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
docs: Update TOAST storage docs for configurable compression.

Mention that there are multiple TOAST compression methods and that the
compression method used is stored in a TOAST pointer along with the
other information that was stored there previously. Add a reference to
the documentation for default_toast_compression, where the supported
methods are listed, instead of duplicating that here.

I haven't tried to preserve the text claiming that pglz is "fairly
simple and very fast." I have no view on the veracity of the former
claim, but LZ4 seems to be faster (and to compress better) so it
seems better not to muddy the waters by talking about compression
speed as a strong point of PGLZ.

Patch by me, reviewed by Justin Pryzby.

Discussion: http://postgr.es/m/CA+Tgmoaw_YBwQhOS_hhEPPwFhfAnu+VCLs18EfGr9gQw1z4H-w@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e8c435a824e123f43067ce6f69d66f14cfb8815e

Modified Files
--------------
doc/src/sgml/storage.sgml | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix some inappropriately-disallowed uses of ALTER ROLE/DATABASE
Next
From: Tom Lane
Date:
Subject: pgsql: Allow table-qualified variable names in ON CONFLICT ... WHERE.