@@ -3141,7 +3141,7 @@ include_dir 'conf.d'
3141
3141
</term>
3142
3142
<listitem>
3143
3143
<para>
3144
- This parameter enables compression of WAL using the specified
3144
+ This parameter enables compression of WAL using the specified
3145
3145
compression method.
3146
3146
When enabled, the <productname>PostgreSQL</productname>
3147
3147
server compresses full page images written to WAL when
@@ -8434,6 +8434,68 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
8434
8434
</listitem>
8435
8435
</varlistentry>
8436
8436
8437
+ <varlistentry id="guc-transaction-isolation" xreflabel="transaction_isolation">
8438
+ <term><varname>transaction_isolation</varname> (<type>enum</type>)
8439
+ <indexterm>
8440
+ <primary>transaction isolation level</primary>
8441
+ </indexterm>
8442
+ <indexterm>
8443
+ <primary><varname>transaction_isolation</varname> configuration parameter</primary>
8444
+ </indexterm>
8445
+ </term>
8446
+ <listitem>
8447
+ <para>
8448
+ This parameter reflects the current transaction's isolation level.
8449
+ At the beginning of each transaction, it is set to the current value
8450
+ of <xref linkend="guc-default-transaction-isolation"/>.
8451
+ Any subsequent attempt to change it is equivalent to a <xref
8452
+ linkend="sql-set-transaction"/> command.
8453
+ </para>
8454
+ </listitem>
8455
+ </varlistentry>
8456
+
8457
+ <varlistentry id="guc-transaction-read-only" xreflabel="transaction_read_only">
8458
+ <term><varname>transaction_read_only</varname> (<type>boolean</type>)
8459
+ <indexterm>
8460
+ <primary>read-only transaction</primary>
8461
+ <secondary>setting default</secondary>
8462
+ </indexterm>
8463
+ <indexterm>
8464
+ <primary><varname>transaction_read_only</varname> configuration parameter</primary>
8465
+ </indexterm>
8466
+ </term>
8467
+ <listitem>
8468
+ <para>
8469
+ This parameter reflects the current transaction's read-only status.
8470
+ At the beginning of each transaction, it is set to the current value
8471
+ of <xref linkend="guc-default-transaction-read-only"/>.
8472
+ Any subsequent attempt to change it is equivalent to a <xref
8473
+ linkend="sql-set-transaction"/> command.
8474
+ </para>
8475
+ </listitem>
8476
+ </varlistentry>
8477
+
8478
+ <varlistentry id="guc-transaction-deferrable" xreflabel="transaction_deferrable">
8479
+ <term><varname>transaction_deferrable</varname> (<type>boolean</type>)
8480
+ <indexterm>
8481
+ <primary>deferrable transaction</primary>
8482
+ <secondary>setting default</secondary>
8483
+ </indexterm>
8484
+ <indexterm>
8485
+ <primary><varname>transaction_deferrable</varname> configuration parameter</primary>
8486
+ </indexterm>
8487
+ </term>
8488
+ <listitem>
8489
+ <para>
8490
+ This parameter reflects the current transaction's deferrability status.
8491
+ At the beginning of each transaction, it is set to the current value
8492
+ of <xref linkend="guc-default-transaction-deferrable"/>.
8493
+ Any subsequent attempt to change it is equivalent to a <xref
8494
+ linkend="sql-set-transaction"/> command.
8495
+ </para>
8496
+ </listitem>
8497
+ </varlistentry>
8498
+
8437
8499
8438
8500
<varlistentry id="guc-session-replication-role" xreflabel="session_replication_role">
8439
8501
<term><varname>session_replication_role</varname> (<type>enum</type>)
@@ -10913,7 +10975,7 @@ LOG: CleanUpLock: deleting: lock(0xb7acd844) id(24688,24696,0,0,0,1)
10913
10975
<productname>PostgreSQL</productname> will automatically remove
10914
10976
temporary files after a backend crash. If disabled, the files will be
10915
10977
retained and may be used for debugging, for example. Repeated crashes
10916
- may however result in accumulation of useless files. This parameter
10978
+ may however result in accumulation of useless files. This parameter
10917
10979
can only be set in the <filename>postgresql.conf</filename> file or on
10918
10980
the server command line.
10919
10981
</para>