diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index ee4925d6d92..5679b40dd56 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -8108,6 +8108,28 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
+
+ default_toast_compression (string)
+
+ default_toast_compression configuration parameter
+
+
+
+
+ This variable sets the default
+ TOAST
+ compression method for columns of newly-created tables. The
+ CREATE TABLE statement can override this default
+ by specifying the COMPRESSION column option.
+
+ The supported compression methods are pglz and
+ (if configured at the time PostgreSQL was
+ built) lz4.
+ The default is pglz.
+
+
+
+
default_tablespace (string)
diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml
index bcbb7a25fb7..989b8e23815 100644
--- a/doc/src/sgml/ref/pg_dump.sgml
+++ b/doc/src/sgml/ref/pg_dump.sgml
@@ -931,6 +931,18 @@ PostgreSQL documentation
+
+
+
+
+ Do not output commands to set TOAST compression
+ methods.
+ With this option, all objects will be created using whichever
+ compression method is the default during restore.
+
+
+
+