Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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">

doc/src/sgml/ref/commit.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/commit.sgml,v 1.11 2001/09/03 12:57:49 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/commit.sgml,v 1.12 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-COMMIT">

doc/src/sgml/ref/copy.sgml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.25 2001/12/04 21:19:57 tgl Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.26 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-COPY">
@@ -172,7 +172,7 @@ ERROR: <replaceable>reason</replaceable>
172172
</title>
173173
<para>
174174
<command>COPY</command> moves data between
175-
<productname>Postgres</productname> tables and
175+
<productname>PostgreSQL</productname> tables and
176176
standard file-system files.
177177

178178
<command>COPY TO</command> copies the entire contents of a table to
@@ -182,7 +182,7 @@ ERROR: <replaceable>reason</replaceable>
182182

183183
<para>
184184
<command>COPY</command> with a filename instructs
185-
the <productname>Postgres</productname> backend
185+
the <productname>PostgreSQL</productname> backend
186186
to directly read from or write to a file.
187187
The file must be accessible to the backend and the name must be specified
188188
from the viewpoint of the backend.
@@ -262,7 +262,8 @@ ERROR: <replaceable>reason</replaceable>
262262
directly by the backend, not by the client application. Therefore,
263263
they must reside on or be accessible to the database server machine,
264264
not the client. They must be accessible to and readable or writable
265-
by the Postgres user (the userid the backend runs as), not the client.
265+
by the <application>PostgreSQL</application> user (the userid the
266+
backend runs as), not the client.
266267
<command>COPY</command> naming a file is only allowed to database
267268
superusers, since it allows writing on any file that the backend has
268269
privileges to write on.
@@ -343,7 +344,7 @@ ERROR: <replaceable>reason</replaceable>
343344
as the column delimiter, backslash that delimiter character to include
344345
it in data.) A literal newline character is
345346
represented as a backslash and a newline. When loading text data
346-
not generated by <acronym>Postgres</acronym>,
347+
not generated by <application>PostgreSQL</application>,
347348
you will need to convert backslash
348349
characters ("\") to double-backslashes ("\\") to ensure that they
349350
are loaded properly.
@@ -357,7 +358,8 @@ ERROR: <replaceable>reason</replaceable>
357358
<title>Binary Format</title>
358359
<para>
359360
The file format used for <command>COPY BINARY</command> changed in
360-
Postgres v7.1. The new format consists of a file header, zero or more
361+
<application>PostgreSQL</application> v7.1.
362+
The new format consists of a file header, zero or more
361363
tuples, and a file trailer.
362364
</para>
363365

doc/src/sgml/ref/create_aggregate.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/create_aggregate.sgml,v 1.15 2001/09/13 15:55:24 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.16 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-CREATEAGGREGATE">
@@ -157,7 +157,7 @@ CREATE
157157
</title>
158158
<para>
159159
<command>CREATE AGGREGATE</command>
160-
allows a user or programmer to extend <productname>Postgres</productname>
160+
allows a user or programmer to extend <productname>PostgreSQL</productname>
161161
functionality by defining new aggregate functions. Some aggregate functions
162162
for base types such as <function>min(integer)</function>
163163
and <function>avg(double precision)</function> are already provided in the base
@@ -185,7 +185,7 @@ CREATE
185185
</programlisting>
186186
</para>
187187
<para>
188-
<productname>Postgres</productname> creates a temporary variable
188+
<productname>PostgreSQL</productname> creates a temporary variable
189189
of data type <replaceable class="PARAMETER">stype</replaceable>
190190
to hold the current internal state of the aggregate. At each input
191191
data item,
@@ -284,7 +284,7 @@ CREATE
284284
</title>
285285
<para>
286286
<command>CREATE AGGREGATE</command>
287-
is a <productname>Postgres</productname> language extension.
287+
is a <productname>PostgreSQL</productname> language extension.
288288
There is no <command>CREATE AGGREGATE</command> in SQL92.
289289
</para>
290290
</refsect2>

doc/src/sgml/ref/create_constraint.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/create_constraint.sgml,v 1.3 2001/09/03 12:57:49 petere Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_constraint.sgml,v 1.4 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-CREATECONSTRAINT">

doc/src/sgml/ref/create_database.sgml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_database.sgml,v 1.21 2001/11/18 00:38:00 tgl Exp $
3-
Postgres documentation
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_database.sgml,v 1.22 2001/12/08 03:24:34 thomas Exp $
3+
PostgreSQL documentation
44
-->
55

66
<refentry id="SQL-CREATEDATABASE">
@@ -170,7 +170,7 @@ CREATE DATABASE <replaceable class="PARAMETER">name</replaceable>
170170
</title>
171171
<para>
172172
<command>CREATE DATABASE</command> creates a new
173-
<productname>Postgres</productname> database.
173+
<productname>PostgreSQL</productname> database.
174174
The creator becomes the owner of the new database.
175175
</para>
176176

@@ -201,7 +201,8 @@ CREATE DATABASE <replaceable class="PARAMETER">name</replaceable>
201201
<replaceable class="parameter">name</replaceable>. In particular,
202202
by writing <literal>TEMPLATE = template0</>, you can create a virgin
203203
database containing only the standard objects predefined by your
204-
version of Postgres. This is useful if you wish to avoid copying
204+
version of <application>PostgreSQL</application>. This is useful
205+
if you wish to avoid copying
205206
any installation-local objects that may have been added to
206207
<literal>template1</>.
207208
</para>
@@ -226,7 +227,7 @@ CREATE DATABASE <replaceable class="PARAMETER">name</replaceable>
226227
Notes
227228
</title>
228229
<para>
229-
<command>CREATE DATABASE</command> is a <productname>Postgres</productname>
230+
<command>CREATE DATABASE</command> is a <productname>PostgreSQL</productname>
230231
language extension.
231232
</para>
232233
<para>
@@ -250,7 +251,7 @@ CREATE DATABASE <replaceable class="PARAMETER">name</replaceable>
250251
comment from Olly; response from Thomas...
251252
<comment>
252253
initlocation does not create a PG_VERSION file in the specified location.
253-
How will Postgres handle the situation if it is upgraded to an
254+
How will PostgreSQL handle the situation if it is upgraded to an
254255
incompatible database version?
255256
</comment>
256257
Hmm. This isn't an issue since the upgrade would do
@@ -287,7 +288,14 @@ comment from Olly; response from Thomas...
287288
<programlisting>
288289
<prompt>$</prompt> <userinput>mkdir private_db</userinput>
289290
<prompt>$</prompt> <userinput>initlocation ~/private_db</userinput>
290-
<computeroutput>Creating Postgres database system directory /home/olly/private_db/base</computeroutput>
291+
<computeroutput>
292+
The location will be initialized with username "olly".
293+
This user will own all the files and must also own the server process.
294+
Creating directory /home/olly/private_db
295+
Creating directory /home/olly/private_db/base
296+
297+
initlocation is complete.
298+
</computeroutput>
291299

292300
<prompt>$</prompt> <userinput>psql olly</userinput>
293301
<computeroutput>

0 commit comments

Comments
 (0)