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
ade95052
Commit
ade95052
authored
Apr 14, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update set constraints man page
parent
0fe9b399
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
doc/src/sgml/ref/set.sgml
doc/src/sgml/ref/set.sgml
+9
-10
No files found.
doc/src/sgml/ref/set.sgml
View file @
ade95052
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.4
0 2000/04/14 15:17:28 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.4
1 2000/04/14 23:12:29 momjian
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -269,10 +269,9 @@ SELECT setseed(<replaceable>value</replaceable>);
...
@@ -269,10 +269,9 @@ SELECT setseed(<replaceable>value</replaceable>);
<term>CONSTRAINT</term>
<term>CONSTRAINT</term>
<listitem>
<listitem>
<para>
<para>
SET CONSTRAINTS is the SQL3 specified command to change the
SET CONSTRAINTS controls the frequency of foreign key
default behaviour of constraints with respect to deferring in the current
constratint checking in the current transaction. Allowed
transaction. Allowed parameters are:
parameters are:
<variablelist>
<variablelist>
<varlistentry>
<varlistentry>
<term><replaceable class="parameter">constraintlist</replaceable></term>
<term><replaceable class="parameter">constraintlist</replaceable></term>
...
@@ -296,11 +295,11 @@ SELECT setseed(<replaceable>value</replaceable>);
...
@@ -296,11 +295,11 @@ SELECT setseed(<replaceable>value</replaceable>);
</para>
</para>
<para>
<para>
In
deferred mode, the actual check of the constraint is held
In
<option>DEFERRED</option> mode, foreign key constraints
back until either its mode is explicitly set to <option>IMMEDIATE</option>,
marked as <option>DEFERRABLE</option> are checked only at
or until COMMIT. This is actually only done for foreign key
transaction commit.
constraints, so it does not apply to UNIQUE or other
In <option>IMMEDIATE</option> mode, foreign key constraints
constraints
.
are checked at the end of each query
.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
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