Commit c69c25ba authored by Bruce Momjian's avatar Bruce Momjian

Update HISTORY/release.sgml for Monday release.

parent 68518cd8
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
Release 7.2 Release 7.2
Release date: 2002-02-04
Overview Overview
This release improves PostgreSQL for use in high-volume applications. This release improves PostgreSQL for use in high-volume applications.
...@@ -204,6 +206,8 @@ Changes ...@@ -204,6 +206,8 @@ Changes
Disable COPY TO/FROM on views (Bruce) Disable COPY TO/FROM on views (Bruce)
COPY DELIMITERS string must be exactly one character (Tom) COPY DELIMITERS string must be exactly one character (Tom)
VACUUM warning about index tuples fewer than heap now only appears when appropriate (Martijn van Oosterhout) VACUUM warning about index tuples fewer than heap now only appears when appropriate (Martijn van Oosterhout)
Fix permission checks for CREATE INDEX (Tom)
Disallow inappropriate use of CREATE/DROP INDEX/TRIGGER/VIEW (Tom)
---------------------------------------------------------------------- ----------------------------------------------------------------------
...@@ -245,6 +249,7 @@ Changes ...@@ -245,6 +249,7 @@ Changes
octet_length(text) now returns non-compressed length (Tatsuo, Bruce) octet_length(text) now returns non-compressed length (Tatsuo, Bruce)
Handle "July" full name in date/time literals (Greg Sabino Mullane) Handle "July" full name in date/time literals (Greg Sabino Mullane)
Some datatype() function calls now evaluated differently Some datatype() function calls now evaluated differently
Add support for Julian and ISO time specifications (Thomas)
---------------------------------------------------------------------- ----------------------------------------------------------------------
...@@ -377,6 +382,7 @@ Changes ...@@ -377,6 +382,7 @@ Changes
Auto allocation for string arrays (char **foo_pp=NULL) Auto allocation for string arrays (char **foo_pp=NULL)
ECPGfree_auto_mem fixed ECPGfree_auto_mem fixed
All function names with external linkage are now prefixed by ECPG All function names with external linkage are now prefixed by ECPG
Fixes for arrays of structures (Michael)
---------------------------------------------------------------------- ----------------------------------------------------------------------
...@@ -418,6 +424,8 @@ Changes ...@@ -418,6 +424,8 @@ Changes
pgindent fixes (Bruce, Tom) pgindent fixes (Bruce, Tom)
Replace strcasecmp() with strcmp() where appropriate (Peter E) Replace strcasecmp() with strcmp() where appropriate (Peter E)
Dynahash portability improvements (Tom) Dynahash portability improvements (Tom)
Add 'volatile' usage in spinlock structures
Improve signal handling logic (Tom)
---------------------------------------------------------------------- ----------------------------------------------------------------------
...@@ -431,7 +439,8 @@ Changes ...@@ -431,7 +439,8 @@ Changes
contrib/fulltextindex fixes (Christopher Kings-Lynne) contrib/fulltextindex fixes (Christopher Kings-Lynne)
New contrib/fuzzystrmatch with levenshtein and metaphone, soundex merged (Joe Conway) New contrib/fuzzystrmatch with levenshtein and metaphone, soundex merged (Joe Conway)
Add contrib/intarray boolean queries, binary search, fixes (Oleg Bartunov) Add contrib/intarray boolean queries, binary search, fixes (Oleg Bartunov)
New pg_upgrade utility (Bruce)
Add new pg_resetxlog options (Bruce, Tom)
---------------------------------------------------------------------- ----------------------------------------------------------------------
Release 7.1.3 Release 7.1.3
......
.\"
.TH PG_UPGRADE 1 "PG_UPGRADE(1)" "14 Jan 2002" "PostgreSQL Client Applications" "" .TH PG_UPGRADE 1 "PG_UPGRADE(1)" "14 Jan 2002" "PostgreSQL Client Applications" ""
.SH NAME .SH NAME
pg_upgrade \- upgrading from a previous release without reloading pg_upgrade \- upgrading from a previous release without reloading
...@@ -75,5 +76,8 @@ are satisfied. ...@@ -75,5 +76,8 @@ are satisfied.
.LP .LP
The upgraded databases will be in an un-vacuumed state. You will The upgraded databases will be in an un-vacuumed state. You will
probably want to run a \fIVACUUM ANALYZE\fP before beginning production work. probably want to run a \fIVACUUM ANALYZE\fP before beginning production work.
.SH NOTES
While \fBpg_upgrade\fP is primarly an upgrade tool, it can also be used
as a data recovery tool.
.SH SEE ALSO .SH SEE ALSO
initdb(1), postmaster(1), pg_dump(1), pg_dumpall(1), vacuumdb(1) initdb(1), postmaster(1), pg_dump(1), pg_dumpall(1), vacuumdb(1)
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.113 2002/01/20 22:19:56 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.114 2002/01/31 18:31:44 momjian Exp $
--> -->
<appendix id="release"> <appendix id="release">
...@@ -7,12 +7,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.113 2002/01/20 22:19:56 pe ...@@ -7,12 +7,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.113 2002/01/20 22:19:56 pe
<sect1 id="release-7-2"> <sect1 id="release-7-2">
<title>Release 7.2</title> <title>Release 7.2</title>
<!--
<note> <note>
<title>Release date</title> <title>Release date</title>
<simpara>2001-??-??</simpara> <simpara>2002-02-04</simpara>
</note> </note>
-->
<sect2> <sect2>
<title>Overview</title> <title>Overview</title>
...@@ -176,7 +175,6 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.113 2002/01/20 22:19:56 pe ...@@ -176,7 +175,6 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.113 2002/01/20 22:19:56 pe
<sect2> <sect2>
<title>Changes</title> <title>Changes</title>
<!-- as of 2001-12-22 -->
<sect3> <sect3>
<title>Server Operation</title> <title>Server Operation</title>
...@@ -307,6 +305,8 @@ New light-weight VACUUM does not lock table; old semantics are available as VACU ...@@ -307,6 +305,8 @@ New light-weight VACUUM does not lock table; old semantics are available as VACU
Disable COPY TO/FROM on views (Bruce) Disable COPY TO/FROM on views (Bruce)
COPY DELIMITERS string must be exactly one character (Tom) COPY DELIMITERS string must be exactly one character (Tom)
VACUUM warning about index tuples fewer than heap now only appears when appropriate (Martijn van Oosterhout) VACUUM warning about index tuples fewer than heap now only appears when appropriate (Martijn van Oosterhout)
Fix permission checks for CREATE INDEX (Tom)
Disallow inappropriate use of CREATE/DROP INDEX/TRIGGER/VIEW (Tom)
</literallayout> </literallayout>
</sect3> </sect3>
...@@ -349,6 +349,7 @@ Fix path_inter, path_distance, path_length, dist_ppath to handle closed paths (C ...@@ -349,6 +349,7 @@ Fix path_inter, path_distance, path_length, dist_ppath to handle closed paths (C
octet_length(text) now returns non-compressed length (Tatsuo, Bruce) octet_length(text) now returns non-compressed length (Tatsuo, Bruce)
Handle "July" full name in date/time literals (Greg Sabino Mullane) Handle "July" full name in date/time literals (Greg Sabino Mullane)
Some datatype() function calls now evaluated differently Some datatype() function calls now evaluated differently
Add support for Julian and ISO time specifications (Thomas)
</literallayout> </literallayout>
</sect3> </sect3>
...@@ -491,6 +492,7 @@ Auto allocation for indicator variable arrays (int *ind_p=NULL) ...@@ -491,6 +492,7 @@ Auto allocation for indicator variable arrays (int *ind_p=NULL)
Auto allocation for string arrays (char **foo_pp=NULL) Auto allocation for string arrays (char **foo_pp=NULL)
ECPGfree_auto_mem fixed ECPGfree_auto_mem fixed
All function names with external linkage are now prefixed by ECPG All function names with external linkage are now prefixed by ECPG
Fixes for arrays of structures (Michael)
</literallayout> </literallayout>
</sect3> </sect3>
...@@ -535,6 +537,8 @@ Remove define of true/false when compiling under C++ (Leandro Fanzone, Tom) ...@@ -535,6 +537,8 @@ Remove define of true/false when compiling under C++ (Leandro Fanzone, Tom)
pgindent fixes (Bruce, Tom) pgindent fixes (Bruce, Tom)
Replace strcasecmp() with strcmp() where appropriate (Peter E) Replace strcasecmp() with strcmp() where appropriate (Peter E)
Dynahash portability improvements (Tom) Dynahash portability improvements (Tom)
Add 'volatile' usage in spinlock structures
Improve signal handling logic (Tom)
</literallayout> </literallayout>
</sect3> </sect3>
...@@ -549,6 +553,8 @@ contrib/xml XML conversion utility (John Gray) ...@@ -549,6 +553,8 @@ contrib/xml XML conversion utility (John Gray)
contrib/fulltextindex fixes (Christopher Kings-Lynne) contrib/fulltextindex fixes (Christopher Kings-Lynne)
New contrib/fuzzystrmatch with levenshtein and metaphone, soundex merged (Joe Conway) New contrib/fuzzystrmatch with levenshtein and metaphone, soundex merged (Joe Conway)
Add contrib/intarray boolean queries, binary search, fixes (Oleg Bartunov) Add contrib/intarray boolean queries, binary search, fixes (Oleg Bartunov)
New pg_upgrade utility (Bruce)
Add new pg_resetxlog options (Bruce, Tom)
</literallayout> </literallayout>
</sect3> </sect3>
</sect2> </sect2>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment