@@ -6895,6 +6895,68 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6895
6895
</listitem>
6896
6896
</varlistentry>
6897
6897
6898
+ <varlistentry id="guc-transaction-isolation" xreflabel="transaction_isolation">
6899
+ <term><varname>transaction_isolation</varname> (<type>enum</type>)
6900
+ <indexterm>
6901
+ <primary>transaction isolation level</primary>
6902
+ </indexterm>
6903
+ <indexterm>
6904
+ <primary><varname>transaction_isolation</varname> configuration parameter</primary>
6905
+ </indexterm>
6906
+ </term>
6907
+ <listitem>
6908
+ <para>
6909
+ This parameter reflects the current transaction's isolation level.
6910
+ At the beginning of each transaction, it is set to the current value
6911
+ of <xref linkend="guc-default-transaction-isolation"/>.
6912
+ Any subsequent attempt to change it is equivalent to a <xref
6913
+ linkend="sql-set-transaction"/> command.
6914
+ </para>
6915
+ </listitem>
6916
+ </varlistentry>
6917
+
6918
+ <varlistentry id="guc-transaction-read-only" xreflabel="transaction_read_only">
6919
+ <term><varname>transaction_read_only</varname> (<type>boolean</type>)
6920
+ <indexterm>
6921
+ <primary>read-only transaction</primary>
6922
+ <secondary>setting default</secondary>
6923
+ </indexterm>
6924
+ <indexterm>
6925
+ <primary><varname>transaction_read_only</varname> configuration parameter</primary>
6926
+ </indexterm>
6927
+ </term>
6928
+ <listitem>
6929
+ <para>
6930
+ This parameter reflects the current transaction's read-only status.
6931
+ At the beginning of each transaction, it is set to the current value
6932
+ of <xref linkend="guc-default-transaction-read-only"/>.
6933
+ Any subsequent attempt to change it is equivalent to a <xref
6934
+ linkend="sql-set-transaction"/> command.
6935
+ </para>
6936
+ </listitem>
6937
+ </varlistentry>
6938
+
6939
+ <varlistentry id="guc-transaction-deferrable" xreflabel="transaction_deferrable">
6940
+ <term><varname>transaction_deferrable</varname> (<type>boolean</type>)
6941
+ <indexterm>
6942
+ <primary>deferrable transaction</primary>
6943
+ <secondary>setting default</secondary>
6944
+ </indexterm>
6945
+ <indexterm>
6946
+ <primary><varname>transaction_deferrable</varname> configuration parameter</primary>
6947
+ </indexterm>
6948
+ </term>
6949
+ <listitem>
6950
+ <para>
6951
+ This parameter reflects the current transaction's deferrability status.
6952
+ At the beginning of each transaction, it is set to the current value
6953
+ of <xref linkend="guc-default-transaction-deferrable"/>.
6954
+ Any subsequent attempt to change it is equivalent to a <xref
6955
+ linkend="sql-set-transaction"/> command.
6956
+ </para>
6957
+ </listitem>
6958
+ </varlistentry>
6959
+
6898
6960
6899
6961
<varlistentry id="guc-session-replication-role" xreflabel="session_replication_role">
6900
6962
<term><varname>session_replication_role</varname> (<type>enum</type>)
0 commit comments