Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0d5fce35
Commit
0d5fce35
authored
Dec 17, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore information schema upgrade instructions of Peter.
parent
4b1a35b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
HISTORY
HISTORY
+11
-0
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+17
-1
No files found.
HISTORY
View file @
0d5fce35
...
...
@@ -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
...
...
doc/src/sgml/release.sgml
View file @
0d5fce35
<!--
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.24
7 2003/12/15 22:24:59
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.24
8 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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment