diff options
author | Bruce Momjian | 2003-12-17 07:07:00 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-12-17 07:07:00 +0000 |
commit | 0d5fce355b235f8be01c4397ef0dac2f6af55da0 (patch) | |
tree | 7a9ca2915c2f4cf3108f36e289e1f2ede1c00d5b /doc/src | |
parent | 4b1a35b3c2e8ca4baf0199b2115fc77126aa0e2e (diff) |
Restore information schema upgrade instructions of Peter.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/release.sgml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 7f4e13319da..350917eff91 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.247 2003/12/15 22:24:59 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.248 2003/12/17 07:07:00 momjian Exp $ --> <appendix id="release"> @@ -25,6 +25,22 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.247 2003/12/15 22:24:59 momjian A dump/restore is <emphasis>not</emphasis> required for those running 7.4. </para> + + <para> + 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 <command>initdb</command>, or by running the following + sequence of SQL commands in each database (ideally including + <literal>template1</literal>) as a superuser in + <application>psql</application>, after installing the new release: +<programlisting> +DROP SCHEMA information_schema CASCADE; +\i /usr/local/pgsql/share/information_schema.sql +</programlisting> + Substitute your installation path in the second command. + </para> + </sect2> <sect2> |