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
3467f029
Commit
3467f029
authored
Jan 08, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add note that not all SQL commands support ONLY in the same way.
parent
af96c820
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
doc/src/sgml/ddl.sgml
doc/src/sgml/ddl.sgml
+18
-1
No files found.
doc/src/sgml/ddl.sgml
View file @
3467f029
<
!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.8
4 2009/01/07 22:40:49 tgl
Exp $ -->
<
!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.8
5 2009/01/08 12:47:58 petere
Exp $ -->
<
chapter
id
=
"ddl"
>
<
title
>
Data
Definition
</
title
>
...
...
@@ -2136,6 +2136,23 @@ VALUES ('New York', NULL, NULL, 'NY');
permissions
on
it
.
</
para
>
<
para
>
More
generally
,
note
that
not
all
SQL
commands
are
able
to
work
on
inheritance
hierarchies
.
Commands
that
are
used
for
data
querying
,
data
modification
,
or
schema
modification
(
e
.
g
.,
<
literal
>
SELECT
</
literal
>,
<
literal
>
UPDATE
</
literal
>,
<
literal
>
DELETE
</
literal
>,
most
variants
of
<
literal
>
ALTER
TABLE
</
literal
>,
but
not
<
literal
>
INSERT
</
literal
>
and
<
literal
>
ALTER
TABLE
...
RENAME
</
literal
>)
typically
default
to
including
child
tables
and
support
the
<
literal
>
ONLY
</
literal
>
notation
to
exclude
them
.
Commands
that
do
database
maintenance
and
tuning
(
e
.
g
.,
<
literal
>
REINDEX
</
literal
>,
<
literal
>
VACUUM
</
literal
>)
typically
only
work
on
individual
,
physical
tables
and
do
no
support
recursing
over
inheritance
hierarchies
.
The
respective
behavior
of
each
individual
command
is
documented
in
the
reference
part
(<
xref
linkend
=
"sql-commands"
>).
</
para
>
<
para
>
A
serious
limitation
of
the
inheritance
feature
is
that
indexes
(
including
unique
constraints
)
and
foreign
key
constraints
only
apply
to
single
...
...
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