File tree 3 files changed +83
-10
lines changed 3 files changed +83
-10
lines changed Original file line number Diff line number Diff line change @@ -530,7 +530,7 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
530
530
<variablelist>
531
531
<varlistentry>
532
532
<term>
533
- XACTISOLEVEL
533
+ XACTISOLEVEL | TRANSACTION ISOLATION LEVEL
534
534
</term>
535
535
<listitem>
536
536
<para>
@@ -556,15 +556,88 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
556
556
</term>
557
557
<listitem>
558
558
<para>
559
- Sets the cost of a heap scan to the default value.
559
+ Sets the isolation level for transactions to
560
+ 'SERIALIZABLE' or 'COMMITTED'.
560
561
</para>
561
562
</listitem>
562
563
</varlistentry>
563
564
</variablelist>
564
565
</para>
566
+
567
+ <variablelist>
568
+ <varlistentry>
569
+ <term>
570
+ CLIENT_ENCODING | NAMES
571
+ </term>
572
+ <listitem>
565
573
<para>
566
- The frontend may be initialized by setting the PGCOSTHEAP
567
- environment variable.
574
+ Sets the multi-byte client encoding
575
+
576
+ <variablelist>
577
+ <varlistentry>
578
+ <term>
579
+ <replaceable class="parameter">value</replaceable>
580
+ </term>
581
+ <listitem>
582
+ <para>
583
+ Sets the multi-byte client encoding.
584
+ </para>
585
+ </listitem>
586
+ </varlistentry>
587
+ </para>
588
+
589
+ <varlistentry>
590
+ <term>
591
+ DEFAULT
592
+ </term>
593
+ <listitem>
594
+ <para>
595
+ Sets the multi-byte client encoding.
596
+ </para>
597
+ </listitem>
598
+ </varlistentry>
599
+ </variablelist>
600
+ </para>
601
+ <para>
602
+ This is only enabled if multi-byte was specified to configure.
603
+ </para>
604
+
605
+ <variablelist>
606
+ <varlistentry>
607
+ <term>
608
+ SERVER_ENCODING
609
+ </term>
610
+ <listitem>
611
+ <para>
612
+ Sets the multi-byte server encoding
613
+
614
+ <variablelist>
615
+ <varlistentry>
616
+ <term>
617
+ <replaceable class="parameter">value</replaceable>
618
+ </term>
619
+ <listitem>
620
+ <para>
621
+ Sets the multi-byte server encoding.
622
+ </para>
623
+ </listitem>
624
+ </varlistentry>
625
+ </para>
626
+
627
+ <varlistentry>
628
+ <term>
629
+ DEFAULT
630
+ </term>
631
+ <listitem>
632
+ <para>
633
+ Sets the multi-byte server encoding.
634
+ </para>
635
+ </listitem>
636
+ </varlistentry>
637
+ </variablelist>
638
+ </para>
639
+ <para>
640
+ This is only enabled if multi-byte was specified to configure.
568
641
</para>
569
642
570
643
Original file line number Diff line number Diff line change 5
5
*
6
6
* Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $Id: psqlHelp.h,v 1.65 1999/06/03 18:25:27 momjian Exp $
8
+ * $Id: psqlHelp.h,v 1.66 1999/06/03 18:37:59 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -328,8 +328,8 @@ TIMEZONE|XACTISOLEVEL|CLIENT_ENCODING|SERVER_ENCODING"},
328
328
\tSET KSQO TO 'ON'|'OFF'\n\
329
329
\tSET QUERY_LIMIT TO #\n\
330
330
\tSET TIMEZONE TO 'value'\n\
331
- \tSET XACTISOLEVEL TO 'SERIALIZABLE'|'COMMITTED'\n\
332
- \tSET CLIENT_ENCODING TO 'EUC_JP'|'SJIS'|'EUC_CN'|'EUC_KR'|'EUC_TW'|\n\
331
+ \tSET XACTISOLEVEL|TRANSACTION ISOLATION LEVEL TO 'SERIALIZABLE'|'COMMITTED'\n\
332
+ \tSET CLIENT_ENCODING|NAMES TO 'EUC_JP'|'SJIS'|'EUC_CN'|'EUC_KR'|'EUC_TW'|\n\
333
333
\t 'BIG5'|'MULE_INTERNAL'|'LATIN1'|'LATIN2'|'LATIN3'|'LATIN4'|'LATIN5'|\n\
334
334
\t 'KOI8|'WIN'|'ALT'\n\
335
335
\tSET SERVER_ENCODING TO 'EUC_JP'|'SJIS'|'EUC_CN'|'EUC_KR'|'EUC_TW'|\n\
Original file line number Diff line number Diff line change 1
1
.\" This is -*-nroff-*-
2
2
.\" XXX standard disclaimer belongs here....
3
- .\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.17 1999/06/03 18:18:43 momjian Exp $
3
+ .\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.18 1999/06/03 18:38:00 momjian Exp $
4
4
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL
5
5
.SH NAME
6
6
set - set run-time parameters for session
@@ -81,13 +81,13 @@ The default is unlimited.
81
81
.IR TIMEZONE
82
82
sets your timezone.
83
83
.PP
84
- .IR XACTISOLEVEL
84
+ .I XACTISOLEVEL|TRANSACTION ISOLATION LEVEL
85
85
sets the transaction isolation level to
86
86
.IR SERIALIZABLE
87
87
or
88
88
.IR COMMITTED .
89
89
.PP
90
- .IR CLIENT_ENCODING
90
+ .IR CLIENT_ENCODING|NAMES
91
91
sets the character set encoding of the client. Only available if multi-byte
92
92
is enabled at configure time.
93
93
.PP
You can’t perform that action at this time.
0 commit comments