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
a75ee43c
Commit
a75ee43c
authored
Sep 12, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mop-up for error-message updates in documentation.
parent
6e591224
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
139 additions
and
87 deletions
+139
-87
doc/src/sgml/ref/analyze.sgml
doc/src/sgml/ref/analyze.sgml
+11
-1
doc/src/sgml/ref/clusterdb.sgml
doc/src/sgml/ref/clusterdb.sgml
+17
-11
doc/src/sgml/ref/create_language.sgml
doc/src/sgml/ref/create_language.sgml
+2
-2
doc/src/sgml/ref/createdb.sgml
doc/src/sgml/ref/createdb.sgml
+18
-12
doc/src/sgml/ref/createuser.sgml
doc/src/sgml/ref/createuser.sgml
+17
-11
doc/src/sgml/ref/dropdb.sgml
doc/src/sgml/ref/dropdb.sgml
+18
-12
doc/src/sgml/ref/dropuser.sgml
doc/src/sgml/ref/dropuser.sgml
+17
-11
doc/src/sgml/ref/listen.sgml
doc/src/sgml/ref/listen.sgml
+4
-2
doc/src/sgml/ref/notify.sgml
doc/src/sgml/ref/notify.sgml
+2
-2
doc/src/sgml/ref/unlisten.sgml
doc/src/sgml/ref/unlisten.sgml
+4
-4
doc/src/sgml/ref/vacuumdb.sgml
doc/src/sgml/ref/vacuumdb.sgml
+29
-19
No files found.
doc/src/sgml/ref/analyze.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/analyze.sgml,v 1.1
5 2003/09/11 17:31:45 momjian
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/analyze.sgml,v 1.1
6 2003/09/12 23:04:45 tgl
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -77,6 +77,16 @@ ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<rep
...
@@ -77,6 +77,16 @@ ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<rep
</variablelist>
</variablelist>
</refsect1>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>
When <literal>VERBOSE</> is specified, <command>ANALYZE</> emits
progress messages to indicate which table is currently being
processed. Various statistics about the tables are printed as well.
</para>
</refsect1>
<refsect1>
<refsect1>
<title>Notes</title>
<title>Notes</title>
...
...
doc/src/sgml/ref/clusterdb.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/clusterdb.sgml,v 1.1
4 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/clusterdb.sgml,v 1.1
5 2003/09/12 23:04:45
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -51,16 +51,6 @@ PostgreSQL documentation
...
@@ -51,16 +51,6 @@ PostgreSQL documentation
this utility and via other methods for accessing the server.
this utility and via other methods for accessing the server.
</para>
</para>
<para>
In case of difficulty, see <xref linkend="SQL-CLUSTER"
endterm="sql-cluster-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
</refsect1>
...
@@ -203,6 +193,22 @@ PostgreSQL documentation
...
@@ -203,6 +193,22 @@ PostgreSQL documentation
</refsect1>
</refsect1>
<refsect1>
<title>Diagnostics</title>
<para>
In case of difficulty, see <xref linkend="SQL-CLUSTER"
endterm="sql-cluster-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
<refsect1>
<refsect1>
<title>Examples</title>
<title>Examples</title>
...
...
doc/src/sgml/ref/create_language.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.3
5 2003/09/09 18:28:52
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.3
6 2003/09/12 23:04:45
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -139,7 +139,7 @@ CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="parameter">langna
...
@@ -139,7 +139,7 @@ CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="parameter">langna
for syntactical correctness, but it can also look at other
for syntactical correctness, but it can also look at other
properties of the function, for example if the language cannot
properties of the function, for example if the language cannot
handle certain argument types. To signal an error, the
handle certain argument types. To signal an error, the
validator function should use the <function>e
log
()</function>
validator function should use the <function>e
report
()</function>
function. The return value of the function is ignored.
function. The return value of the function is ignored.
</para>
</para>
</listitem>
</listitem>
...
...
doc/src/sgml/ref/createdb.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createdb.sgml,v 1.3
5 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createdb.sgml,v 1.3
6 2003/09/12 23:04:45
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -53,16 +53,6 @@ PostgreSQL documentation
...
@@ -53,16 +53,6 @@ PostgreSQL documentation
this utility and via other methods for accessing the server.
this utility and via other methods for accessing the server.
</para>
</para>
<para>
In case of difficulty, see <xref linkend="SQL-CREATEDATABASE"
endterm="sql-createdatabase-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
</refsect1>
...
@@ -252,7 +242,23 @@ PostgreSQL documentation
...
@@ -252,7 +242,23 @@ PostgreSQL documentation
</refsect1>
</refsect1>
<refsect1 id="R1-APP-CREATEDB-2">
<refsect1>
<title>Diagnostics</title>
<para>
In case of difficulty, see <xref linkend="SQL-CREATEDATABASE"
endterm="sql-createdatabase-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
<refsect1>
<title>Examples</title>
<title>Examples</title>
<para>
<para>
...
...
doc/src/sgml/ref/createuser.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.3
7 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.3
8 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -54,16 +54,6 @@ PostgreSQL documentation
...
@@ -54,16 +54,6 @@ PostgreSQL documentation
this utility and via other methods for accessing the server.
this utility and via other methods for accessing the server.
</para>
</para>
<para>
In case of difficulty, see <xref linkend="SQL-CREATEUSER"
endterm="sql-createuser-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
</refsect1>
...
@@ -276,6 +266,22 @@ PostgreSQL documentation
...
@@ -276,6 +266,22 @@ PostgreSQL documentation
</refsect1>
</refsect1>
<refsect1>
<title>Diagnostics</title>
<para>
In case of difficulty, see <xref linkend="SQL-CREATEUSER"
endterm="sql-createuser-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
<refsect1>
<refsect1>
<title>Examples</title>
<title>Examples</title>
...
...
doc/src/sgml/ref/dropdb.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/dropdb.sgml,v 1.2
4 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/dropdb.sgml,v 1.2
5 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -46,16 +46,6 @@ PostgreSQL documentation
...
@@ -46,16 +46,6 @@ PostgreSQL documentation
this utility and via other methods for accessing the server.
this utility and via other methods for accessing the server.
</para>
</para>
<para>
In case of difficulty, see <xref linkend="SQL-DROPDATABASE"
endterm="sql-dropdatabase-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
</refsect1>
...
@@ -181,7 +171,23 @@ PostgreSQL documentation
...
@@ -181,7 +171,23 @@ PostgreSQL documentation
</refsect1>
</refsect1>
<refsect1 id="R1-APP-DROPDB-2">
<refsect1>
<title>Diagnostics</title>
<para>
In case of difficulty, see <xref linkend="SQL-DROPDATABASE"
endterm="sql-dropdatabase-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
<refsect1>
<title>Examples</title>
<title>Examples</title>
<para>
<para>
...
...
doc/src/sgml/ref/dropuser.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/dropuser.sgml,v 1.
29 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/dropuser.sgml,v 1.
30 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -48,16 +48,6 @@ PostgreSQL documentation
...
@@ -48,16 +48,6 @@ PostgreSQL documentation
this utility and via other methods for accessing the server.
this utility and via other methods for accessing the server.
</para>
</para>
<para>
In case of difficulty, see <xref linkend="SQL-DROPUSER"
endterm="sql-dropuser-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
</refsect1>
...
@@ -185,6 +175,22 @@ PostgreSQL documentation
...
@@ -185,6 +175,22 @@ PostgreSQL documentation
</refsect1>
</refsect1>
<refsect1>
<title>Diagnostics</title>
<para>
In case of difficulty, see <xref linkend="SQL-DROPUSER"
endterm="sql-dropuser-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
<refsect1>
<refsect1>
<title>Examples</title>
<title>Examples</title>
...
...
doc/src/sgml/ref/listen.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/listen.sgml,v 1.1
8 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/listen.sgml,v 1.1
9 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -92,7 +92,9 @@ LISTEN <replaceable class="PARAMETER">name</replaceable>
...
@@ -92,7 +92,9 @@ LISTEN <replaceable class="PARAMETER">name</replaceable>
<title>Examples</title>
<title>Examples</title>
<para>
<para>
Configure and execute a listen/notify sequence from <application>psql</application>:
Configure and execute a listen/notify sequence from
<application>psql</application>:
<programlisting>
<programlisting>
LISTEN virtual;
LISTEN virtual;
NOTIFY virtual;
NOTIFY virtual;
...
...
doc/src/sgml/ref/notify.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/notify.sgml,v 1.2
2 2003/09/09 18:28:53
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/notify.sgml,v 1.2
3 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -143,7 +143,7 @@ NOTIFY <replaceable class="PARAMETER">name</replaceable>
...
@@ -143,7 +143,7 @@ NOTIFY <replaceable class="PARAMETER">name</replaceable>
<programlisting>
<programlisting>
LISTEN virtual;
LISTEN virtual;
NOTIFY virtual;
NOTIFY virtual;
Asynchronous
NOTIFY 'virtual' from backend with pid '8448' received.
Asynchronous
notification "virtual" received from server process with PID 8448.
</programlisting>
</programlisting>
</para>
</para>
</refsect1>
</refsect1>
...
...
doc/src/sgml/ref/unlisten.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/unlisten.sgml,v 1.2
3 2003/09/09 18:28:53
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/unlisten.sgml,v 1.2
4 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -93,13 +93,13 @@ UNLISTEN { <replaceable class="PARAMETER">name</replaceable> | * }
...
@@ -93,13 +93,13 @@ UNLISTEN { <replaceable class="PARAMETER">name</replaceable> | * }
<programlisting>
<programlisting>
LISTEN virtual;
LISTEN virtual;
NOTIFY virtual;
NOTIFY virtual;
Asynchronous
NOTIFY 'virtual' from backend with pid '8448' received
Asynchronous
notification "virtual" received from server process with PID 8448.
</programlisting>
</programlisting>
</para>
</para>
<para>
<para>
Once <command>UNLISTEN</> has been executed, further <command>NOTIFY</>
commands will be
Once <command>UNLISTEN</> has been executed, further <command>NOTIFY</>
ignored:
commands will be
ignored:
<programlisting>
<programlisting>
UNLISTEN virtual;
UNLISTEN virtual;
...
...
doc/src/sgml/ref/vacuumdb.sgml
View file @
a75ee43c
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuumdb.sgml,v 1.3
2 2003/09/12 00:12:47
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuumdb.sgml,v 1.3
3 2003/09/12 23:04:46
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -58,24 +58,6 @@ PostgreSQL documentation
...
@@ -58,24 +58,6 @@ PostgreSQL documentation
this utility and via other methods for accessing the server.
this utility and via other methods for accessing the server.
</para>
</para>
<para>
In case of difficulty, see <xref linkend="SQL-VACUUM"
endterm="sql-vacuum-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
<para>
<application>vacuumdb</application> might need to connect several
times to the <productname>PostgreSQL</productname> server, asking
for a password each time. It is convenient to have a
<filename>$HOME/.pgpass</> file in such cases. See <xref
linkend="libpq-pgpass"> for more information.
</para>
</refsect1>
</refsect1>
...
@@ -256,6 +238,34 @@ PostgreSQL documentation
...
@@ -256,6 +238,34 @@ PostgreSQL documentation
</refsect1>
</refsect1>
<refsect1>
<title>Diagnostics</title>
<para>
In case of difficulty, see <xref linkend="SQL-VACUUM"
endterm="sql-vacuum-title"> and <xref linkend="APP-PSQL"> for
discussions of potential problems and error messages.
The database server must be running at the
targeted host. Also, any default connection settings and environment
variables used by the <application>libpq</application> front-end
library will apply.
</para>
</refsect1>
<refsect1>
<title>Notes</title>
<para>
<application>vacuumdb</application> might need to connect several
times to the <productname>PostgreSQL</productname> server, asking
for a password each time. It is convenient to have a
<filename>$HOME/.pgpass</> file in such cases. See <xref
linkend="libpq-pgpass"> for more information.
</para>
</refsect1>
<refsect1>
<refsect1>
<title>Examples</title>
<title>Examples</title>
...
...
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