@@ -7777,6 +7777,68 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
7777
7777
</listitem>
7778
7778
</varlistentry>
7779
7779
7780
+ <varlistentry id="guc-transaction-isolation" xreflabel="transaction_isolation">
7781
+ <term><varname>transaction_isolation</varname> (<type>enum</type>)
7782
+ <indexterm>
7783
+ <primary>transaction isolation level</primary>
7784
+ </indexterm>
7785
+ <indexterm>
7786
+ <primary><varname>transaction_isolation</varname> configuration parameter</primary>
7787
+ </indexterm>
7788
+ </term>
7789
+ <listitem>
7790
+ <para>
7791
+ This parameter reflects the current transaction's isolation level.
7792
+ At the beginning of each transaction, it is set to the current value
7793
+ of <xref linkend="guc-default-transaction-isolation"/>.
7794
+ Any subsequent attempt to change it is equivalent to a <xref
7795
+ linkend="sql-set-transaction"/> command.
7796
+ </para>
7797
+ </listitem>
7798
+ </varlistentry>
7799
+
7800
+ <varlistentry id="guc-transaction-read-only" xreflabel="transaction_read_only">
7801
+ <term><varname>transaction_read_only</varname> (<type>boolean</type>)
7802
+ <indexterm>
7803
+ <primary>read-only transaction</primary>
7804
+ <secondary>setting default</secondary>
7805
+ </indexterm>
7806
+ <indexterm>
7807
+ <primary><varname>transaction_read_only</varname> configuration parameter</primary>
7808
+ </indexterm>
7809
+ </term>
7810
+ <listitem>
7811
+ <para>
7812
+ This parameter reflects the current transaction's read-only status.
7813
+ At the beginning of each transaction, it is set to the current value
7814
+ of <xref linkend="guc-default-transaction-read-only"/>.
7815
+ Any subsequent attempt to change it is equivalent to a <xref
7816
+ linkend="sql-set-transaction"/> command.
7817
+ </para>
7818
+ </listitem>
7819
+ </varlistentry>
7820
+
7821
+ <varlistentry id="guc-transaction-deferrable" xreflabel="transaction_deferrable">
7822
+ <term><varname>transaction_deferrable</varname> (<type>boolean</type>)
7823
+ <indexterm>
7824
+ <primary>deferrable transaction</primary>
7825
+ <secondary>setting default</secondary>
7826
+ </indexterm>
7827
+ <indexterm>
7828
+ <primary><varname>transaction_deferrable</varname> configuration parameter</primary>
7829
+ </indexterm>
7830
+ </term>
7831
+ <listitem>
7832
+ <para>
7833
+ This parameter reflects the current transaction's deferrability status.
7834
+ At the beginning of each transaction, it is set to the current value
7835
+ of <xref linkend="guc-default-transaction-deferrable"/>.
7836
+ Any subsequent attempt to change it is equivalent to a <xref
7837
+ linkend="sql-set-transaction"/> command.
7838
+ </para>
7839
+ </listitem>
7840
+ </varlistentry>
7841
+
7780
7842
7781
7843
<varlistentry id="guc-session-replication-role" xreflabel="session_replication_role">
7782
7844
<term><varname>session_replication_role</varname> (<type>enum</type>)
0 commit comments