11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.103 2001/11/08 23:42:23 petere Exp $
2+ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.104 2001/11/21 06:09:44 thomas Exp $
33-->
44
55 <appendix id="release">
@@ -829,7 +829,7 @@ ecpg changes (Michael)
829829 <para>
830830 A dump/restore using <application>pg_dump</application>
831831 is required for those wishing to migrate data from any
832- previous release of <productname>Postgres </productname>.
832+ previous release of <productname>PostgreSQL </productname>.
833833 For those upgrading from 6.5.*, you may instead use
834834 <application>pg_upgrade</application> to upgrade to this
835835 release; however, a full dump/reload installation is always the
@@ -848,7 +848,7 @@ ecpg changes (Michael)
848848 SQL92-defined types <type>timestamp</type> and
849849 <type>interval</type>. Although there has been some effort to
850850 ease the transition by allowing
851- <productname>Postgres </productname> to recognize
851+ <productname>PostgreSQL </productname> to recognize
852852 the deprecated type names and translate them to the new type
853853 names, this mechanism may not be completely transparent to
854854 your existing application.
@@ -1554,7 +1554,7 @@ Add Win1250 (Czech) support (Pavel Behal)
15541554 chapter on troubleshooting from Tom Lane.
15551555 And the <citetitle>Programmer's Guide</citetitle> has a
15561556 description of query processing, also from Stefan, and details
1557- on obtaining the <productname>Postgres </productname> source
1557+ on obtaining the <productname>PostgreSQL </productname> source
15581558 tree via anonymous <productname>CVS</productname> and
15591559 <productname>CVSup</productname>.
15601560 </para>
@@ -1569,7 +1569,7 @@ Add Win1250 (Czech) support (Pavel Behal)
15691569 <para>
15701570 A dump/restore using <application>pg_dump</application>
15711571 is required for those wishing to migrate data from any
1572- previous release of <productname>Postgres </productname>.
1572+ previous release of <productname>PostgreSQL </productname>.
15731573 <application>pg_upgrade</application> can <emphasis>not</emphasis>
15741574 be used to upgrade to this release because the on-disk structure
15751575 of the tables has changed compared to previous releases.
@@ -1602,7 +1602,7 @@ Add Win1250 (Czech) support (Pavel Behal)
16021602 concurrent updates one must use <command>SELECT FOR UPDATE</command> or
16031603 an appropriate <command>LOCK TABLE</command> statement. This should be
16041604 taken into account when porting applications from previous releases of
1605- <productname>Postgres </productname> and other environments.
1605+ <productname>PostgreSQL </productname> and other environments.
16061606 </para>
16071607
16081608 <para>
@@ -1986,7 +1986,7 @@ asynchronous messages and interrupts thanks to Tom Lane.
19861986The parser will now perform automatic type coercion to match arguments
19871987to available operators and functions, and to match columns and expressions
19881988with target columns. This uses a generic mechanism which supports
1989- the type extensibility features of <productname>Postgres </productname>.
1989+ the type extensibility features of <productname>PostgreSQL </productname>.
19901990There is a new chapter in the <citetitle>User's Guide</citetitle>
19911991which covers this topic.
19921992</para>
@@ -2029,7 +2029,7 @@ been.
20292029A dump/restore using <application>pg_dump</application>
20302030or <application>pg_dumpall</application>
20312031is required for those wishing to migrate data from any
2032- previous release of <productname>Postgres </productname>.
2032+ previous release of <productname>PostgreSQL </productname>.
20332033</para>
20342034</sect2>
20352035
@@ -2281,7 +2281,7 @@ Correctly handles function calls on the left side of BETWEEN and LIKE clauses.
22812281A dump/restore is NOT required for those running 6.3 or 6.3.1. A
22822282<literal>make distclean</>, <literal>make</>, and <literal>make install</> is all that is required.
22832283This last step should be performed while the postmaster is not running.
2284- You should re-link any custom applications that use <productname>Postgres </productname> libraries.
2284+ You should re-link any custom applications that use <productname>PostgreSQL </productname> libraries.
22852285</para>
22862286<para>
22872287For upgrades from pre-6.3 installations,
@@ -2369,7 +2369,7 @@ Improvements to the configuration autodetection for installation.
23692369A dump/restore is NOT required for those running 6.3. A
23702370<literal>make distclean</>, <literal>make</>, and <literal>make install</> is all that is required.
23712371This last step should be performed while the postmaster is not running.
2372- You should re-link any custom applications that use <productname>Postgres </productname> libraries.
2372+ You should re-link any custom applications that use <productname>PostgreSQL </productname> libraries.
23732373</para>
23742374<para>
23752375For upgrades from pre-6.3 installations,
@@ -2542,7 +2542,7 @@ Better identify tcl and tk libs and includes(Bruce)
25422542 \d command for types, operators, etc. Also, views have their own
25432543 permissions now, not based on the underlying tables, so permissions on
25442544 them have to be set separately. Check <filename>/pgsql/interfaces</filename> for some new
2545- ways to talk to <productname>Postgres </productname>.
2545+ ways to talk to <productname>PostgreSQL </productname>.
25462546 </para>
25472547 <para>
25482548 This is the first release that really required an explanation for
@@ -2558,7 +2558,7 @@ Better identify tcl and tk libs and includes(Bruce)
25582558 A dump/restore using <application>pg_dump</application>
25592559 or <application>pg_dumpall</application>
25602560 is required for those wishing to migrate data from any
2561- previous release of <productname>Postgres </productname>.
2561+ previous release of <productname>PostgreSQL </productname>.
25622562 </para>
25632563 </sect2>
25642564
@@ -2615,7 +2615,7 @@ Modify constraint syntax to be SQL92-compliant(Thomas)
26152615Implement SQL92 PRIMARY KEY and UNIQUE clauses using indexes(Thomas)
26162616Recognize SQL92 syntax for FOREIGN KEY. Throw elog notice(Thomas)
26172617Allow NOT NULL UNIQUE constraint clause (each allowed separately before)(Thomas)
2618- Allow Postgres -style casting ("::") of non-constants(Thomas)
2618+ Allow PostgreSQL -style casting ("::") of non-constants(Thomas)
26192619Add support for SQL3 TRUE and FALSE boolean constants(Thomas)
26202620Support SQL92 syntax for IS TRUE/IS FALSE/IS NOT TRUE/IS NOT FALSE(Thomas)
26212621Allow shorter strings for boolean literals (e.g. "t", "tr", "tru")(Thomas)
@@ -2628,7 +2628,7 @@ Use shared lock when building indexes(Vadim)
26282628Free memory allocated for an user query inside transaction block after
26292629 this query is done, was turned off in <= 6.2.1(Vadim)
26302630New SQL statement CREATE PROCEDURAL LANGUAGE(Jan)
2631- New <productname>Postgres </productname> Procedural Language (PL) backend interface(Jan)
2631+ New <productname>PostgreSQL </productname> Procedural Language (PL) backend interface(Jan)
26322632Rename pg_dump -H option to -h(Bruce)
26332633Add Java support for passwords, European dates(Peter)
26342634Use indexes for LIKE and ~, !~ operations(Bruce)
@@ -2637,7 +2637,7 @@ Time Travel removed(Vadim, Bruce)
26372637Add paging for \d and \z, and fix \i(Bruce)
26382638Add Unix domain socket support to backend and to frontend library(Goran)
26392639Implement CREATE DATABASE/WITH LOCATION and initlocation utility(Thomas)
2640- Allow more SQL92 and/or <productname>Postgres </productname> reserved words as column identifiers(Thomas)
2640+ Allow more SQL92 and/or <productname>PostgreSQL </productname> reserved words as column identifiers(Thomas)
26412641Augment support for SQL92 SET TIME ZONE...(Thomas)
26422642SET/SHOW/RESET TIME ZONE uses TZ backend environment variable(Thomas)
26432643Implement SET keyword = DEFAULT and SET TIME ZONE DEFAULT(Thomas)
@@ -2850,7 +2850,7 @@ Trigger function for inserting user names for INSERT/UPDATE(Brook Milligan)
28502850
28512851<para>
28522852A dump/restore is required for those wishing to migrate data from
2853- previous releases of <productname>Postgres </productname>.
2853+ previous releases of <productname>PostgreSQL </productname>.
28542854</para>
28552855
28562856<sect2>
@@ -3071,19 +3071,19 @@ pg_dumpall now returns proper status, portability fix(Bruce)
30713071
30723072<para>
30733073 The regression tests have been adapted and extensively modified for the
3074- 6.1 release of <productname>Postgres </productname>.
3074+ 6.1 release of <productname>PostgreSQL </productname>.
30753075</para>
30763076
30773077<para>
30783078 Three new data types (<type>datetime</type>, <type>timespan</type>, and <type>circle</type>) have been added to
3079- the native set of <productname>Postgres </productname> types. Points, boxes, paths, and polygons
3079+ the native set of <productname>PostgreSQL </productname> types. Points, boxes, paths, and polygons
30803080 have had their output formats made consistent across the data types.
30813081 The polygon output in misc.out has only been spot-checked for correctness
30823082 relative to the original regression output.
30833083</para>
30843084
30853085<para>
3086- <productname>Postgres </productname> 6.1 introduces a new, alternate
3086+ <productname>PostgreSQL </productname> 6.1 introduces a new, alternate
30873087optimizer which uses <firstterm>genetic</firstterm>
30883088 algorithms. These algorithms introduce a random behavior in the ordering
30893089 of query results when the query contains multiple qualifiers or multiple
@@ -3253,7 +3253,7 @@ DG-UX, Ultrix, Irix, AIX portability fixes
32533253
32543254<para>
32553255A dump/restore is required for those wishing to migrate data from
3256- previous releases of <productname>Postgres </productname>.
3256+ previous releases of <productname>PostgreSQL </productname>.
32573257</para>
32583258
32593259<sect2>
0 commit comments