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
5a7547d3
Commit
5a7547d3
authored
Jun 04, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add description for SET TRANSACTION.
parent
74e7b58b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
doc/src/sgml/ref/set.sgml
doc/src/sgml/ref/set.sgml
+6
-1
src/man/set.l
src/man/set.l
+9
-1
No files found.
doc/src/sgml/ref/set.sgml
View file @
5a7547d3
...
...
@@ -545,6 +545,11 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
<para>
Sets the isolation level for the current transaction to
'SERIALIZABLE' or 'READ COMMITTED'.
SERIALIZABLE means that the current transaction will place a
lock on every row read, so later reads in that transaction
see the rows unmodified by other transactions.
READ COMMITTED means that the current transaction reads only
committed rows. READ COMMITTED is the default.
</para>
</listitem>
</varlistentry>
...
...
@@ -557,7 +562,7 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
<listitem>
<para>
Sets the isolation level for the current transaction to
'
SERIALIZABLE' or '
READ COMMITTED'.
'READ COMMITTED'.
</para>
</listitem>
</varlistentry>
...
...
src/man/set.l
View file @
5a7547d3
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.2
0 1999/06/03 20:44:28
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.2
1 1999/06/04 03:44:42
momjian Exp $
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME
set - set run-time parameters for session
...
...
@@ -86,6 +86,14 @@ sets the current transaction's isolation level to
.IR SERIALIZABLE
or
.IR READ COMMITTED .
.IR SERIALIZABLE
means that the current transaction will place a lock on every row read,
so later reads in that transaction see the rows unmodified by
other transactions.
.IR READ COMMITTED
means that the current transaction reads only committed rows.
.IR READ COMMITTED
is the default.
.PP
.IR CLIENT_ENCODING|NAMES
sets the character set encoding of the client. Only available if multi-byte
...
...
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