From: Bruce Momjian Date: Wed, 17 Dec 2003 07:07:46 +0000 (+0000) Subject: Restore information schema upgrade instructions of Peter. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=0a5d1348431b4bc4bfe3aafa7d7c3347448bbb19;p=users%2Fbernd%2Fpostgres.git Restore information schema upgrade instructions of Peter. --- diff --git a/HISTORY b/HISTORY index 71848028c5..0ecd64c073 100644 --- a/HISTORY +++ b/HISTORY @@ -11,6 +11,17 @@ 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: +DROP SCHEMA information_schema CASCADE; +\i /usr/local/pgsql/share/information_schema.sql + + Substitute your installation path in the second command. _________________________________________________________________ Changes diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 358c6e20c8..b6f4a7ea22 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -25,6 +25,22 @@ $PostgreSQL$ 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: + +DROP SCHEMA information_schema CASCADE; +\i /usr/local/pgsql/share/information_schema.sql + + Substitute your installation path in the second command. + +