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
49b2f22f
Commit
49b2f22f
authored
Apr 14, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
6787c6c9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
11 deletions
+16
-11
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table.sgml
+16
-11
No files found.
doc/src/sgml/ref/create_table.sgml
View file @
49b2f22f
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.2
3 2000/04/14 21:44:21
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.2
4 2000/04/14 22:13:24
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -957,11 +957,13 @@ ERROR: Cannot insert a duplicate key into a unique index.
...
@@ -957,11 +957,13 @@ ERROR: Cannot insert a duplicate key into a unique index.
<term>MATCH <replaceable class="parameter">matchtype</replaceable></term>
<term>MATCH <replaceable class="parameter">matchtype</replaceable></term>
<listitem>
<listitem>
<para>
<para>
The type of comparison to do between the table data. There are
There are three match types: MATCH FULL, MATCH PARTIAL, and a
three types of matching, MATCH FULL, MATCH PARTIAL, and the
default match type if none is specified. MATCH FULL will not
unspecified match type used if no match type is specified.
allow one column of a multi-column foreign key to be NULL
MATCH PARTIAL is not
unless all foreign key columns are NULL. The default MATCH type
currently supported.
allows a single foreign key column to be NULL while other parts
of the foreign key are not NULL. MATCH PARTIAL is not currently
supported.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -1174,7 +1176,7 @@ ERROR: <replaceable class="parameter">name</replaceable> referential integrity
...
@@ -1174,7 +1176,7 @@ ERROR: <replaceable class="parameter">name</replaceable> referential integrity
</title>
</title>
<para>
<para>
Currently <productname>Postgres</productname> only supports MATCH
Currently <productname>Postgres</productname> only supports MATCH
FULL and a
n unspecified
match type. In addition, the referenced
FULL and a
default
match type. In addition, the referenced
columns are supposed to be the columns of a UNIQUE constraint in
columns are supposed to be the columns of a UNIQUE constraint in
the referenced table, however <productname>Postgres</productname>
the referenced table, however <productname>Postgres</productname>
does not enforce this.
does not enforce this.
...
@@ -1503,10 +1505,13 @@ FOREIGN KEY ( <replaceable class="parameter">column</replaceable> [, ...] ) REFE
...
@@ -1503,10 +1505,13 @@ FOREIGN KEY ( <replaceable class="parameter">column</replaceable> [, ...] ) REFE
<term>MATCH <replaceable class="parameter">matchtype</replaceable></term>
<term>MATCH <replaceable class="parameter">matchtype</replaceable></term>
<listitem>
<listitem>
<para>
<para>
The type of comparison to do between the table data. There are
There are three match types: MATCH FULL, MATCH PARTIAL, and a
three types of matching, MATCH FULL, MATCH PARTIAL, and the
default match type if none is specified. MATCH FULL will not
unspecified match type used if no match type is specified.
allow one column of a multi-column foreign key to be NULL
MATCH PARTIAL is not currently supported.
unless all foreign key columns are NULL. The default MATCH type
allows a single foreign key column to be NULL while other parts
of the foreign key are not NULL. MATCH PARTIAL is not currently
supported.
</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