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