1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-17 06:41:24 +03:00

Restore information schema upgrade instructions of Peter.

This commit is contained in:
Bruce Momjian 2003-12-17 07:07:46 +00:00
parent 0b00d7cd4a
commit 9c09764783
2 changed files with 28 additions and 1 deletions

11
HISTORY
View File

@ -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

View File

@ -1,5 +1,5 @@
<!--
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.235.2.11 2003/12/15 22:25:29 momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.235.2.12 2003/12/17 07:07:46 momjian Exp $
-->
<appendix id="release">
@ -25,6 +25,22 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.235.2.11 2003/12/15 22:25:29 mo
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>