Skip to content

Commit 0d5fce3

Browse files
committed
Restore information schema upgrade instructions of Peter.
1 parent 4b1a35b commit 0d5fce3

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

HISTORY

+11
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@
1111
Migration to version 7.4
1212

1313
A dump/restore is *not* required for those running 7.4.
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:
21+
DROP SCHEMA information_schema CASCADE;
22+
\i /usr/local/pgsql/share/information_schema.sql
23+
24+
Substitute your installation path in the second command.
1425
_________________________________________________________________
1526

1627
Changes

doc/src/sgml/release.sgml

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.247 2003/12/15 22:24:59 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.248 2003/12/17 07:07:00 momjian Exp $
33
-->
44

55
<appendix id="release">
@@ -25,6 +25,22 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.247 2003/12/15 22:24:59 momjian
2525
A dump/restore is <emphasis>not</emphasis> required for those
2626
running 7.4.
2727
</para>
28+
29+
<para>
30+
If you want to install the fixes in the information schema
31+
concerning the bit types, you need to reload the information
32+
schema. This is either accomplished by initializing a new cluster
33+
by running <command>initdb</command>, or by running the following
34+
sequence of SQL commands in each database (ideally including
35+
<literal>template1</literal>) as a superuser in
36+
<application>psql</application>, after installing the new release:
37+
<programlisting>
38+
DROP SCHEMA information_schema CASCADE;
39+
\i /usr/local/pgsql/share/information_schema.sql
40+
</programlisting>
41+
Substitute your installation path in the second command.
42+
</para>
43+
2844
</sect2>
2945

3046
<sect2>

0 commit comments

Comments
 (0)