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
446b5476
Commit
446b5476
authored
Mar 23, 2004
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor SGML improvements.
parent
9f894981
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
16 deletions
+17
-16
doc/src/sgml/ref/alter_domain.sgml
doc/src/sgml/ref/alter_domain.sgml
+5
-5
doc/src/sgml/ref/cluster.sgml
doc/src/sgml/ref/cluster.sgml
+6
-5
doc/src/sgml/ref/truncate.sgml
doc/src/sgml/ref/truncate.sgml
+3
-3
doc/src/sgml/ref/vacuum.sgml
doc/src/sgml/ref/vacuum.sgml
+3
-3
No files found.
doc/src/sgml/ref/alter_domain.sgml
View file @
446b5476
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_domain.sgml,v 1.1
1 2003/11/29 19:51:38 pgsql
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_domain.sgml,v 1.1
2 2004/03/23 13:21:41 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -139,7 +139,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
</varlistentry>
<varlistentry>
<term>
CASCADE
</term>
<term>
<literal>CASCADE</literal>
</term>
<listitem>
<para>
Automatically drop objects that depend on the constraint.
...
...
@@ -148,7 +148,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
</varlistentry>
<varlistentry>
<term>
RESTRICT
</term>
<term>
<literal>RESTRICT</literal>
</term>
<listitem>
<para>
Refuse to drop the constraint if there are any dependent
...
...
@@ -174,11 +174,11 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
<title>Examples</title>
<para>
To add a
NOT NULL
constraint to a domain:
To add a
<literal>NOT NULL</literal>
constraint to a domain:
<programlisting>
ALTER DOMAIN zipcode SET NOT NULL;
</programlisting>
To remove a
NOT NULL
constraint from a domain:
To remove a
<literal>NOT NULL</literal>
constraint from a domain:
<programlisting>
ALTER DOMAIN zipcode DROP NOT NULL;
</programlisting>
...
...
doc/src/sgml/ref/cluster.sgml
View file @
446b5476
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/cluster.sgml,v 1.3
1 2003/11/29 19:51:38 pgsql
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/cluster.sgml,v 1.3
2 2004/03/23 13:21:41 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -129,9 +129,10 @@ CLUSTER
</para>
<para>
Because the planner records statistics about the ordering of tables, it
is advisable to run <command>ANALYZE</command> on the newly clustered
table. Otherwise, the planner may make poor choices of query plans.
Because the planner records statistics about the ordering of
tables, it is advisable to run <xref linkend="sql-analyze"
endterm="sql-analyze-title"> on the newly clustered table.
Otherwise, the planner may make poor choices of query plans.
</para>
<para>
...
...
@@ -175,7 +176,7 @@ CLUSTER emp_ind ON emp;
</para>
<para>
Cluster the <literal>employees</literal>
relation
using the same
Cluster the <literal>employees</literal>
table
using the same
index that was used before:
<programlisting>
CLUSTER emp;
...
...
doc/src/sgml/ref/truncate.sgml
View file @
446b5476
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/truncate.sgml,v 1.1
6 2003/11/29 19:51:39 pgsql
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/truncate.sgml,v 1.1
7 2004/03/23 13:21:41 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -60,8 +60,8 @@ TRUNCATE [ TABLE ] <replaceable class="PARAMETER">name</replaceable>
</para>
<para>
<command>TRUNCATE</> will not run any user-defined
ON DELETE triggers
that might exist for the table.
<command>TRUNCATE</> will not run any user-defined
<literal>ON
DELETE</literal> triggers
that might exist for the table.
</para>
</refsect1>
...
...
doc/src/sgml/ref/vacuum.sgml
View file @
446b5476
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.3
4 2003/11/29 19:51:39 pgsql
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.3
5 2004/03/23 13:21:41 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -64,14 +64,14 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ <replaceable class="PARAMETER">
</para>
<para>
<
command>FREEZE</command
> is a special-purpose option that
<
literal>FREEZE</literal
> is a special-purpose option that
causes tuples to be marked <quote>frozen</quote> as soon as possible,
rather than waiting until they are quite old. If this is done when there
are no other open transactions in the same database, then it is guaranteed
that all tuples in the database are <quote>frozen</> and will not be
subject to transaction ID wraparound problems, no matter how long the
database is left unvacuumed.
<
command>FREEZE</command
> is not recommended for routine use. Its only
<
literal>FREEZE</literal
> is not recommended for routine use. Its only
intended usage is in connection with preparation of user-defined template
databases, or other databases that are completely read-only and will not
receive routine maintenance <command>VACUUM</> operations.
...
...
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