Skip to content

Commit 03a321d

Browse files
author
Thomas G. Lockhart
committed
Use PostgreSQL consistantly throughout docs. Before, usage was split evenly
between Postgres and PostgreSQL.
1 parent 68cb184 commit 03a321d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+360
-340
lines changed

doc/src/sgml/ref/abort.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/abort.sgml,v 1.8 2001/09/03 12:57:49 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/abort.sgml,v 1.9 2001/12/08 03:24:33 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-ABORT">
@@ -129,7 +129,7 @@ ABORT WORK;
129129
SQL92
130130
</title>
131131
<para>
132-
This command is a <productname>Postgres</productname> extension present
132+
This command is a <productname>PostgreSQL</productname> extension present
133133
for historical reasons. <command>ROLLBACK</command> is the <acronym>SQL92</acronym>
134134
equivalent command.
135135
</para>

doc/src/sgml/ref/allfiles.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.30 2001/05/08 21:06:42 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.31 2001/12/08 03:24:33 thomas Exp $
3+
PostgreSQL documentation
44
Complete list of usable sgml source files in this directory.
55
-->
66

doc/src/sgml/ref/alter_group.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_group.sgml,v 1.6 2001/09/12 01:55:25 ishii Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_group.sgml,v 1.7 2001/12/08 03:24:33 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-ALTERGROUP">

doc/src/sgml/ref/alter_table.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.33 2001/11/22 03:42:32 momjian Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.34 2001/12/08 03:24:33 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-ALTERTABLE">
@@ -313,7 +313,7 @@ ALTER TABLE distributors ADD CONSTRAINT dist_id_zipcode_key UNIQUE (dist_id, zip
313313

314314
<para>
315315
SQL92 specifies some additional capabilities for <command>ALTER TABLE</command>
316-
statement which are not yet directly supported by <productname>Postgres</productname>:
316+
statement which are not yet directly supported by <productname>PostgreSQL</productname>:
317317

318318
<variablelist>
319319
<varlistentry>
@@ -345,7 +345,7 @@ DROP TABLE temp;
345345

346346
<para>
347347
The clauses to rename tables, columns, indexes, and sequences are
348-
<productname>Postgres</productname> extensions from SQL92.
348+
<productname>PostgreSQL</productname> extensions from SQL92.
349349
</para>
350350

351351
</refsect2>

doc/src/sgml/ref/alter_user.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.17 2001/09/21 20:31:45 tgl Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.18 2001/12/08 03:24:33 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-ALTERUSER">
@@ -155,7 +155,7 @@ ERROR: ALTER USER: user "username" does not exist
155155
</title>
156156
<para>
157157
<command>ALTER USER</command> is used to change the attributes of a user's
158-
<productname>Postgres</productname> account. Attributes not mentioned
158+
<productname>PostgreSQL</productname> account. Attributes not mentioned
159159
in the command retain their previous settings.
160160
</para>
161161
<para>

doc/src/sgml/ref/analyze.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/analyze.sgml,v 1.4 2001/11/18 22:17:30 tgl Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/analyze.sgml,v 1.5 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-ANALYZE">
@@ -99,7 +99,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<rep
9999
</title>
100100
<para>
101101
<command>ANALYZE</command> collects statistics about the contents of
102-
<productname>Postgres</productname> tables, and stores the results in
102+
<productname>PostgreSQL</productname> tables, and stores the results in
103103
the system table <literal>pg_statistic</literal>. Subsequently,
104104
the query planner uses the statistics to help determine the most efficient
105105
execution plans for queries.

doc/src/sgml/ref/begin.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.14 2001/09/03 12:57:49 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.15 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-BEGIN">
@@ -95,7 +95,7 @@ NOTICE: BEGIN: already a transaction in progress
9595
</title>
9696

9797
<para>
98-
By default, <productname>Postgres</productname> executes transactions
98+
By default, <productname>PostgreSQL</productname> executes transactions
9999
in <firstterm>unchained mode</firstterm>
100100
(also known as <quote>autocommit</quote> in other database
101101
systems).
@@ -116,7 +116,7 @@ NOTICE: BEGIN: already a transaction in progress
116116

117117
<para>
118118
The default transaction isolation level in
119-
<productname>Postgres</productname>
119+
<productname>PostgreSQL</productname>
120120
is READ COMMITTED, where queries inside the transaction see only changes
121121
committed before query execution. So, you have to use
122122
<command>SET TRANSACTION ISOLATION LEVEL SERIALIZABLE</command>
@@ -128,7 +128,7 @@ NOTICE: BEGIN: already a transaction in progress
128128
</para>
129129

130130
<para>
131-
If the transaction is committed, <productname>Postgres</productname>
131+
If the transaction is committed, <productname>PostgreSQL</productname>
132132
will ensure either that all updates are done or else that none of
133133
them are done. Transactions have the standard <acronym>ACID</acronym>
134134
(atomic, consistent, isolatable, and durable) property.
@@ -185,7 +185,7 @@ BEGIN WORK;
185185

186186
<para>
187187
<command>BEGIN</command>
188-
is a <productname>Postgres</productname> language extension.
188+
is a <productname>PostgreSQL</productname> language extension.
189189
There is no explicit <command>BEGIN</command>
190190
command in <acronym>SQL92</acronym>;
191191
transaction initiation is always implicit and it terminates either

doc/src/sgml/ref/close.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/close.sgml,v 1.8 2001/09/03 12:57:49 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/close.sgml,v 1.9 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-CLOSE">
@@ -112,7 +112,7 @@ NOTICE PerformPortalClose: portal "<replaceable class="PARAMETER">cursor</replac
112112
Notes
113113
</title>
114114
<para>
115-
<productname>Postgres</productname> does not have
115+
<productname>PostgreSQL</productname> does not have
116116
an explicit <command>OPEN</command> cursor statement;
117117
a cursor is considered open when it is declared.
118118
Use the <command>DECLARE</command> statement to declare a cursor.

doc/src/sgml/ref/cluster.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.12 2001/10/31 04:49:43 momjian Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.13 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-CLUSTER">
@@ -114,7 +114,7 @@ ERROR: Relation <replaceable class="PARAMETER">table</replaceable> does not exis
114114
Description
115115
</title>
116116
<para>
117-
<command>CLUSTER</command> instructs <productname>Postgres</productname>
117+
<command>CLUSTER</command> instructs <productname>PostgreSQL</productname>
118118
to cluster the table specified
119119
by <replaceable class="parameter">table</replaceable> approximately
120120
based on the index specified by
@@ -174,7 +174,7 @@ ERROR: Relation <replaceable class="PARAMETER">table</replaceable> does not exis
174174
on large tables because the rows are fetched from the heap
175175
in index order, and if the heap table is unordered, the
176176
entries are on random pages, so there is one disk page
177-
retrieved for every row moved. <productname>Postgres</productname> has a cache,
177+
retrieved for every row moved. <productname>PostgreSQL</productname> has a cache,
178178
but the majority of a big table will not fit in the cache.
179179
</para>
180180

@@ -186,7 +186,7 @@ SELECT <replaceable class="parameter">columnlist</replaceable> INTO TABLE <repla
186186
FROM <replaceable class="parameter">table</replaceable> ORDER BY <replaceable class="parameter">columnlist</replaceable>
187187
</programlisting>
188188

189-
which uses the <productname>Postgres</productname> sorting code in
189+
which uses the <productname>PostgreSQL</productname> sorting code in
190190
the ORDER BY clause to match the index, and which is much faster for
191191
unordered data. You then drop the old table, use
192192
<command>ALTER TABLE...RENAME</command>

doc/src/sgml/ref/comment.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/comment.sgml,v 1.10 2001/10/03 20:54:20 tgl Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/comment.sgml,v 1.11 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-COMMENT">

0 commit comments

Comments
 (0)