summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian1999-06-03 18:38:00 +0000
committerBruce Momjian1999-06-03 18:38:00 +0000
commit4a077caa60b9c47e8a17dd5501c5dbd1e8a51165 (patch)
tree9177b776673b0a9b4c0c094f0f25f30186c469c3 /doc/src
parent78572412299cfb728fb8af02d7ad2fc51dbac15d (diff)
Add SET TRANSACTION ISOLATION LEVEL and SET NAMES mention.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/set.sgml81
1 files changed, 77 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/set.sgml b/doc/src/sgml/ref/set.sgml
index f4e7374e11e..f60577f39b1 100644
--- a/doc/src/sgml/ref/set.sgml
+++ b/doc/src/sgml/ref/set.sgml
@@ -530,7 +530,7 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
<variablelist>
<varlistentry>
<term>
- XACTISOLEVEL
+ XACTISOLEVEL | TRANSACTION ISOLATION LEVEL
</term>
<listitem>
<para>
@@ -556,15 +556,88 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
</term>
<listitem>
<para>
- Sets the cost of a heap scan to the default value.
+ Sets the isolation level for transactions to
+ 'SERIALIZABLE' or 'COMMITTED'.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
+
+ <variablelist>
+ <varlistentry>
+ <term>
+ CLIENT_ENCODING | NAMES
+ </term>
+ <listitem>
<para>
- The frontend may be initialized by setting the PGCOSTHEAP
- environment variable.
+ Sets the multi-byte client encoding
+
+ <variablelist>
+ <varlistentry>
+ <term>
+ <replaceable class="parameter">value</replaceable>
+ </term>
+ <listitem>
+ <para>
+ Sets the multi-byte client encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ </para>
+
+ <varlistentry>
+ <term>
+ DEFAULT
+ </term>
+ <listitem>
+ <para>
+ Sets the multi-byte client encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
+ <para>
+ This is only enabled if multi-byte was specified to configure.
+ </para>
+
+ <variablelist>
+ <varlistentry>
+ <term>
+ SERVER_ENCODING
+ </term>
+ <listitem>
+ <para>
+ Sets the multi-byte server encoding
+
+ <variablelist>
+ <varlistentry>
+ <term>
+ <replaceable class="parameter">value</replaceable>
+ </term>
+ <listitem>
+ <para>
+ Sets the multi-byte server encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ </para>
+
+ <varlistentry>
+ <term>
+ DEFAULT
+ </term>
+ <listitem>
+ <para>
+ Sets the multi-byte server encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
+ <para>
+ This is only enabled if multi-byte was specified to configure.
</para>