Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4a077caa
Commit
4a077caa
authored
Jun 03, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add SET TRANSACTION ISOLATION LEVEL and SET NAMES mention.
parent
78572412
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
83 additions
and
10 deletions
+83
-10
doc/src/sgml/ref/set.sgml
doc/src/sgml/ref/set.sgml
+77
-4
src/bin/psql/psqlHelp.h
src/bin/psql/psqlHelp.h
+3
-3
src/man/set.l
src/man/set.l
+3
-3
No files found.
doc/src/sgml/ref/set.sgml
View file @
4a077caa
...
...
@@ -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>
...
...
src/bin/psql/psqlHelp.h
View file @
4a077caa
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: psqlHelp.h,v 1.6
5 1999/06/03 18:25:27
momjian Exp $
* $Id: psqlHelp.h,v 1.6
6 1999/06/03 18:37:59
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -328,8 +328,8 @@ TIMEZONE|XACTISOLEVEL|CLIENT_ENCODING|SERVER_ENCODING"},
\t
SET KSQO TO 'ON'|'OFF'
\n
\
\t
SET QUERY_LIMIT TO #
\n
\
\t
SET TIMEZONE TO 'value'
\n
\
\t
SET XACTISOLEVEL TO 'SERIALIZABLE'|'COMMITTED'
\n
\
\t
SET CLIENT_ENCODING TO 'EUC_JP'|'SJIS'|'EUC_CN'|'EUC_KR'|'EUC_TW'|
\n
\
\t
SET XACTISOLEVEL
|TRANSACTION ISOLATION LEVEL
TO 'SERIALIZABLE'|'COMMITTED'
\n
\
\t
SET CLIENT_ENCODING
|NAMES
TO 'EUC_JP'|'SJIS'|'EUC_CN'|'EUC_KR'|'EUC_TW'|
\n
\
\t
'BIG5'|'MULE_INTERNAL'|'LATIN1'|'LATIN2'|'LATIN3'|'LATIN4'|'LATIN5'|
\n
\
\t
'KOI8|'WIN'|'ALT'
\n
\
\t
SET SERVER_ENCODING TO 'EUC_JP'|'SJIS'|'EUC_CN'|'EUC_KR'|'EUC_TW'|
\n
\
...
...
src/man/set.l
View file @
4a077caa
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.1
7 1999/06/03 18:18:43
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.1
8 1999/06/03 18:38:00
momjian Exp $
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME
set - set run-time parameters for session
...
...
@@ -81,13 +81,13 @@ The default is unlimited.
.IR TIMEZONE
sets your timezone.
.PP
.I
R XACTISO
LEVEL
.I
XACTISOLEVEL|TRANSACTION ISOLATION
LEVEL
sets the transaction isolation level to
.IR SERIALIZABLE
or
.IR COMMITTED .
.PP
.IR CLIENT_ENCODING
.IR CLIENT_ENCODING
|NAMES
sets the character set encoding of the client. Only available if multi-byte
is enabled at configure time.
.PP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment