diff options
author | seanc <seanc@FreeBSD.org> | 2003-12-25 18:55:39 +0800 |
---|---|---|
committer | seanc <seanc@FreeBSD.org> | 2003-12-25 18:55:39 +0800 |
commit | 3dad99b462c62ab8efa9e1230754e62834e73e37 (patch) | |
tree | 90ce23995a787e399532d7f72deca8ab2d81f674 /databases/postgresql83-server/files | |
parent | a1f6c6fc99385fd6b16093709f2abf16f530e2f2 (diff) | |
download | freebsd-ports-gnome-3dad99b462c62ab8efa9e1230754e62834e73e37.tar.gz freebsd-ports-gnome-3dad99b462c62ab8efa9e1230754e62834e73e37.tar.zst freebsd-ports-gnome-3dad99b462c62ab8efa9e1230754e62834e73e37.zip |
Maintainer update to PostgreSQL 7.4.1. This release includes fixed ident
authentication support for FreeBSD (been broken since 7.4). Merry
Christmas to all, and to all a good night.
Release notes:
http://developer.postgresql.org/docs/postgres/release.html#RELEASE-7-4-1
Prompted by PR: ports/60542
Obtained from: maintainer
Diffstat (limited to 'databases/postgresql83-server/files')
-rw-r--r-- | databases/postgresql83-server/files/pkg-message.server | 16 | ||||
-rw-r--r-- | databases/postgresql83-server/files/post-install-notes | 3 |
2 files changed, 17 insertions, 2 deletions
diff --git a/databases/postgresql83-server/files/pkg-message.server b/databases/postgresql83-server/files/pkg-message.server index a2e7293462ca..69826681eb42 100644 --- a/databases/postgresql83-server/files/pkg-message.server +++ b/databases/postgresql83-server/files/pkg-message.server @@ -19,3 +19,19 @@ NB. FreeBSD's PostgreSQL port now by default logs to syslog For more tips, read ~pgsql/post-install-notes ====================================================================== +Specific for the 7.4.1 update: + + A dump/restore is *not* required for those running 7.4. + + If you want to install the fixes in the information schema you need to + reload it into the database. 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 + + Fixes to the information schema (from HISTORY): + * Fix information schema for bit data types (Peter) + * Fix information schema view constraint_column_usage for foreign + keys (Peter) diff --git a/databases/postgresql83-server/files/post-install-notes b/databases/postgresql83-server/files/post-install-notes index 037eec446deb..0fb0604214b8 100644 --- a/databases/postgresql83-server/files/post-install-notes +++ b/databases/postgresql83-server/files/post-install-notes @@ -7,8 +7,7 @@ p5-Pg A perl5 API for client access to PostgreSQL databases. postgresql-tcltk - If you want tcl/tk client support. You get a neat GUI, pgaccess, as - a bonus! + If you want tcl/tk client support. postgresql-jdbc For Java JDBC support. |