@@ -12,12 +12,11 @@ Migration to version 7.4
12
12
13
13
A dump/restore is *not* required for those running 7.4.
14
14
15
- If you want to install the fixes in the information schema concerning
16
- the bit types, you need to reload the information schema. This is
17
- either accomplished by initializing a new cluster by running "initdb",
18
- or by running the following sequence of SQL commands in each database
19
- (ideally including template1) as a superuser in psql, after installing
20
- the new release:
15
+ If you want to install the fixes in the information schema you need to
16
+ reload it into the database. This is either accomplished by
17
+ initializing a new cluster by running "initdb", or by running the
18
+ following sequence of SQL commands in each database (ideally including
19
+ template1) as a superuser in psql, after installing the new release:
21
20
DROP SCHEMA information_schema CASCADE;
22
21
\i /usr/local/pgsql/share/information_schema.sql
23
22
@@ -28,9 +27,9 @@ Changes
28
27
29
28
Changes as of 2003-12-14
30
29
31
- * Fixed bug in CREATE SCHEMA parsing (Michael)
32
- * Fix --enable-thread-safety compile error when used with
33
- --with-perl (Peter)
30
+ * Fixed bug in " CREATE SCHEMA" parsing in ECPG (Michael)
31
+ * Fix compile error when " --enable-thread-safety" and "-- with-perl"
32
+ are used together (Peter)
34
33
* Fix for subqueries that used hash joins (Tom)
35
34
Certain subqueries that used hash joins would crash because of
36
35
improperly shared structures.
@@ -42,19 +41,18 @@ Changes
42
41
(Tom)
43
42
Fix these functions to return values consistent with pre-7.4
44
43
releases.
45
- * Several / contrib/pg_autovacuum fixes
44
+ * Several " contrib/pg_autovacuum" fixes
46
45
Fixes include improper variable initialization, missing vacuum
47
- after TRUNCATE, and duration computation overflow for long
46
+ after " TRUNCATE" , and duration computation overflow for long
48
47
vacuums.
49
- * Allow compile of / contrib/cube under Cygwin (Jason Tishler)
48
+ * Allow compile of " contrib/cube" under Cygwin (Jason Tishler)
50
49
* Fix Solaris use of password file when no passwords are defined
51
50
(Tom)
52
51
Fix crash on Solaris caused by use of any type of password
53
52
authentication when no passwords were defined.
54
53
* JDBC fix for thread problems, other fixes
55
- * Fix for index bytea lookups (Joe)
54
+ * Fix for bytea index lookups (Joe)
56
55
* Fix information schema for bit data types (Peter)
57
- To enable this fix, an initdb is required.
58
56
* Force zero_damaged_pages to be on during recovery from WAL
59
57
* Prevent some obscure cases of "variable not in subplan target
60
58
lists"
0 commit comments