File tree 2 files changed +34
-0
lines changed
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -8108,6 +8108,28 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
8108
8108
</listitem>
8109
8109
</varlistentry>
8110
8110
8111
+ <varlistentry id="guc-default-toast-compression" xreflabel="default_toast_compression">
8112
+ <term><varname>default_toast_compression</varname> (<type>string</type>)
8113
+ <indexterm>
8114
+ <primary><varname>default_toast_compression</varname> configuration parameter</primary>
8115
+ </indexterm>
8116
+ </term>
8117
+ <listitem>
8118
+ <para>
8119
+ This variable sets the default
8120
+ <link linkend="storage-toast">TOAST</link>
8121
+ compression method for columns of newly-created tables. The
8122
+ <command>CREATE TABLE</command> statement can override this default
8123
+ by specifying the <literal>COMPRESSION</literal> column option.
8124
+
8125
+ The supported compression methods are <literal>pglz</literal> and
8126
+ (if configured at the time <productname>PostgreSQL</productname> was
8127
+ built) <literal>lz4</literal>.
8128
+ The default is <literal>pglz</literal>.
8129
+ </para>
8130
+ </listitem>
8131
+ </varlistentry>
8132
+
8111
8133
<varlistentry id="guc-default-tablespace" xreflabel="default_tablespace">
8112
8134
<term><varname>default_tablespace</varname> (<type>string</type>)
8113
8135
<indexterm>
Original file line number Diff line number Diff line change @@ -931,6 +931,18 @@ PostgreSQL documentation
931
931
</listitem>
932
932
</varlistentry>
933
933
934
+ <varlistentry>
935
+ <term><option>--no-toast-compression</option></term>
936
+ <listitem>
937
+ <para>
938
+ Do not output commands to set <acronym>TOAST</acronym> compression
939
+ methods.
940
+ With this option, all objects will be created using whichever
941
+ compression method is the default during restore.
942
+ </para>
943
+ </listitem>
944
+ </varlistentry>
945
+
934
946
<varlistentry>
935
947
<term><option>--no-unlogged-table-data</option></term>
936
948
<listitem>
You can’t perform that action at this time.
0 commit comments