Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
ade95052
Commit
ade95052
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update set constraints man page
parent
0fe9b399
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/ref/set.sgml
+9
-10
9 additions, 10 deletions
doc/src/sgml/ref/set.sgml
with
9 additions
and
10 deletions
doc/src/sgml/ref/set.sgml
+
9
−
10
View file @
ade95052
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.4
0
2000/04/14
15
:1
7
:2
8 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.4
1
2000/04/14
23
:1
2
:2
9 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
constraint
s
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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment