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
c4fb2b4e
Commit
c4fb2b4e
authored
Jul 14, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove no-longer-appropriate notes about lack of CASCADE/RESTRICT behavior.
parent
df3f5dfd
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
53 deletions
+9
-53
doc/src/sgml/ref/drop_domain.sgml
doc/src/sgml/ref/drop_domain.sgml
+1
-15
doc/src/sgml/ref/drop_function.sgml
doc/src/sgml/ref/drop_function.sgml
+1
-6
doc/src/sgml/ref/drop_table.sgml
doc/src/sgml/ref/drop_table.sgml
+6
-8
doc/src/sgml/ref/drop_type.sgml
doc/src/sgml/ref/drop_type.sgml
+1
-24
No files found.
doc/src/sgml/ref/drop_domain.sgml
View file @
c4fb2b4e
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_domain.sgml,v 1.
7 2002/07/12 18:43:13
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_domain.sgml,v 1.
8 2002/07/14 22:47:56
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -117,20 +117,6 @@ ERROR: RemoveDomain: type '<replaceable class="parameter">domainname</replaceab
...
@@ -117,20 +117,6 @@ ERROR: RemoveDomain: type '<replaceable class="parameter">domainname</replaceab
</para>
</para>
</refsect1>
</refsect1>
<refsect1 id="SQL-DROPDOMAIN-notes">
<title>Notes</title>
<itemizedlist>
<listitem>
<para>
It is the user's responsibility to remove any operators,
functions, aggregates, access methods, and tables that
use a deleted domain.
</para>
</listitem>
</itemizedlist>
</refsect1>
<refsect1 id="SQL-DROPDOMAIN-examples">
<refsect1 id="SQL-DROPDOMAIN-examples">
<title>Examples</title>
<title>Examples</title>
<para>
<para>
...
...
doc/src/sgml/ref/drop_function.sgml
View file @
c4fb2b4e
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_function.sgml,v 1.2
1 2002/07/12 18:43:13
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_function.sgml,v 1.2
2 2002/07/14 22:47:56
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -131,11 +131,6 @@ WARNING: RemoveFunction: Function "<replaceable class="parameter">name</replace
...
@@ -131,11 +131,6 @@ WARNING: RemoveFunction: Function "<replaceable class="parameter">name</replace
<xref linkend="sql-createfunction">
<xref linkend="sql-createfunction">
for information on creating functions.
for information on creating functions.
</para>
</para>
<para>
No checks are made to ensure that types, operators, access
methods, or triggers that rely on the function have been removed first.
</para>
</refsect1>
</refsect1>
<refsect1 id="SQL-DROPFUNCTION-examples">
<refsect1 id="SQL-DROPFUNCTION-examples">
...
...
doc/src/sgml/ref/drop_table.sgml
View file @
c4fb2b4e
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_table.sgml,v 1.1
6 2002/07/12 18:43:13
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_table.sgml,v 1.1
7 2002/07/14 22:47:56
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -111,13 +111,11 @@ ERROR: table "<replaceable class="parameter">name</replaceable>" does not exist
...
@@ -111,13 +111,11 @@ ERROR: table "<replaceable class="parameter">name</replaceable>" does not exist
destroyed, by using <command>DELETE</command>.
destroyed, by using <command>DELETE</command>.
</para>
</para>
<para>
<para>
If a table being destroyed has secondary indexes on it,
<command>DROP TABLE</command> always removes any indexes, rules,
they will be removed first. The removal of just a
triggers, and constraints that exist for the target table. However,
secondary index will not affect the contents of the underlying table.
to drop a table that is referenced by a foreign-key constraint of another
</para>
table, CASCADE must be specified. (CASCADE will remove the foreign-key
<para>
constraint, not the other table itself.)
<command>DROP TABLE</command> will also remove any rules or triggers
that exist for the target table.
</para>
</para>
<refsect2 id="R2-SQL-DROPTABLE-3">
<refsect2 id="R2-SQL-DROPTABLE-3">
...
...
doc/src/sgml/ref/drop_type.sgml
View file @
c4fb2b4e
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_type.sgml,v 1.1
8 2002/07/12 18:43:13
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_type.sgml,v 1.1
9 2002/07/14 22:47:56
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -115,29 +115,6 @@ ERROR: RemoveType: type '<replaceable class="parameter">typename</replaceable>'
...
@@ -115,29 +115,6 @@ ERROR: RemoveType: type '<replaceable class="parameter">typename</replaceable>'
</para>
</para>
</refsect1>
</refsect1>
<refsect1 id="SQL-DROPTYPE-notes">
<title>Notes</title>
<itemizedlist>
<listitem>
<para>
It is the user's responsibility to remove any operators,
functions, aggregates, access methods, subtypes, and tables that
use a deleted type. However, the associated array data type
(which was automatically created by <command>CREATE TYPE</command>)
will be removed automatically.
</para>
</listitem>
<listitem>
<para>
If a built-in type is removed, the behavior of the server is
unpredictable.
</para>
</listitem>
</itemizedlist>
</refsect1>
<refsect1 id="SQL-DROPTYPE-examples">
<refsect1 id="SQL-DROPTYPE-examples">
<title>Examples</title>
<title>Examples</title>
<para>
<para>
...
...
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