summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-12-20 00:57:32 +0000
committerBruce Momjian <bruce@momjian.us>2003-12-20 00:57:32 +0000
commit4c15abce931f0ad0c8e03b1dc5dc3fe50f625b88 (patch)
tree17e6f6ea9dc95d6da1441583c58edc8062f85750
parent41f60b20fd8e4c13cb7d9c407c82d4617cfef670 (diff)
downloadpostgresql-4c15abce931f0ad0c8e03b1dc5dc3fe50f625b88.tar.gz
Update HISTORY file for 7.4.1.
-rw-r--r--HISTORY26
1 files changed, 12 insertions, 14 deletions
diff --git a/HISTORY b/HISTORY
index 0ecd64c073..e14ca74d08 100644
--- a/HISTORY
+++ b/HISTORY
@@ -12,12 +12,11 @@ Migration to version 7.4
A dump/restore is *not* required for those running 7.4.
- If you want to install the fixes in the information schema concerning
- the bit types, you need to reload the information schema. This is
- either accomplished by initializing a new cluster by running "initdb",
- or by running the following sequence of SQL commands in each database
- (ideally including template1) as a superuser in psql, after installing
- the new release:
+ If you want to install the fixes in the information schema you need to
+ reload it into the database. This is either accomplished by
+ initializing a new cluster by running "initdb", or by running the
+ following sequence of SQL commands in each database (ideally including
+ template1) as a superuser in psql, after installing the new release:
DROP SCHEMA information_schema CASCADE;
\i /usr/local/pgsql/share/information_schema.sql
@@ -28,9 +27,9 @@ Changes
Changes as of 2003-12-14
- * Fixed bug in CREATE SCHEMA parsing (Michael)
- * Fix --enable-thread-safety compile error when used with
- --with-perl (Peter)
+ * Fixed bug in "CREATE SCHEMA" parsing in ECPG (Michael)
+ * Fix compile error when "--enable-thread-safety" and "--with-perl"
+ are used together (Peter)
* Fix for subqueries that used hash joins (Tom)
Certain subqueries that used hash joins would crash because of
improperly shared structures.
@@ -42,19 +41,18 @@ Changes
(Tom)
Fix these functions to return values consistent with pre-7.4
releases.
- * Several /contrib/pg_autovacuum fixes
+ * Several "contrib/pg_autovacuum" fixes
Fixes include improper variable initialization, missing vacuum
- after TRUNCATE, and duration computation overflow for long
+ after "TRUNCATE", and duration computation overflow for long
vacuums.
- * Allow compile of /contrib/cube under Cygwin (Jason Tishler)
+ * Allow compile of "contrib/cube" under Cygwin (Jason Tishler)
* Fix Solaris use of password file when no passwords are defined
(Tom)
Fix crash on Solaris caused by use of any type of password
authentication when no passwords were defined.
* JDBC fix for thread problems, other fixes
- * Fix for index bytea lookups (Joe)
+ * Fix for bytea index lookups (Joe)
* Fix information schema for bit data types (Peter)
- To enable this fix, an initdb is required.
* Force zero_damaged_pages to be on during recovery from WAL
* Prevent some obscure cases of "variable not in subplan target
lists"