Subject: CVS commit: pkgsrc/databases/postgresql
To: None <pkgsrc-changes@netbsd.org>
From: Johnny C. Lam <jlam@netbsd.org>
List: pkgsrc-changes
Date: 04/04/2002 10:48:32
Module Name:	pkgsrc
Committed By:	jlam
Date:		Thu Apr  4 07:48:31 UTC 2002

Modified Files:
	pkgsrc/databases/postgresql: Makefile Makefile.common distinfo
	pkgsrc/databases/postgresql/patches: patch-aa patch-ab patch-ac
	    patch-ad patch-af patch-ah patch-al patch-am
Removed Files:
	pkgsrc/databases/postgresql: Makefile.ssl
	pkgsrc/databases/postgresql/patches: patch-ag patch-aj patch-ak

Log Message:
Update postgresql and related packages to 7.2.  Thanks to Michael Graff
<explorer@flame.org> for most of the work on this update.

Pkgsrc changes from the previous version include removing Makefile.ssl and
some patches that have been integrated into this release of PostgreSQL.  We
leave open the question of when to byte-compile the Python modules for the
PyGreSQL interface and just do it as before, although we should consider
doing the compilation as a post-install step to ensure that the timestamps
are correct.  We also reorder some lines in the Makefile to include
Makefile.common below certain definitions (GNU_CONFIGURE, USE_BUILDLINK_ONLY)
as they may possibly trigger different portions of Makefile.common.

*** Please note that a dump/restore is required to migrate an existing ***
*** PostgreSQL installation to 7.2.                                    ***

Major changes from version 7.1.3 are geared toward improving use in
high-volume applications and include:

   VACUUM
	   Vacuuming no longer locks tables, thus allowing normal user access
           during the vacuum. A new "VACUUM FULL" command does old-style
           vacuum by locking the table and shrinking the on-disk copy of the
           table.

   Transactions
           There is no longer a problem with installations that exceed four
           billion transactions.

   OID's
           OID's are now optional. Users can now create tables without OID's
           for cases where OID usage is excessive.

   Optimizer
           The system now computes histogram column statistics during
           "ANALYZE", allowing much better optimizer choices.

   Security
           A new MD5 encryption option allows more secure storage and
           transfer of passwords. A new Unix-domain socket authentication
           option is available on Linux and BSD systems. PAM authentication
           is also available.

   Statistics
           Administrators can use the new table access statistics module to
           get fine-grained information about table and index usage.


To generate a diff of this commit:
cvs rdiff -r1.66 -r1.67 pkgsrc/databases/postgresql/Makefile
cvs rdiff -r1.25 -r1.26 pkgsrc/databases/postgresql/Makefile.common
cvs rdiff -r1.2 -r0 pkgsrc/databases/postgresql/Makefile.ssl
cvs rdiff -r1.9 -r1.10 pkgsrc/databases/postgresql/distinfo
cvs rdiff -r1.8 -r1.9 pkgsrc/databases/postgresql/patches/patch-aa
cvs rdiff -r1.12 -r1.13 pkgsrc/databases/postgresql/patches/patch-ab
cvs rdiff -r1.9 -r1.10 pkgsrc/databases/postgresql/patches/patch-ac \
    pkgsrc/databases/postgresql/patches/patch-ah
cvs rdiff -r1.10 -r1.11 pkgsrc/databases/postgresql/patches/patch-ad
cvs rdiff -r1.13 -r1.14 pkgsrc/databases/postgresql/patches/patch-af
cvs rdiff -r1.8 -r0 pkgsrc/databases/postgresql/patches/patch-ag
cvs rdiff -r1.10 -r0 pkgsrc/databases/postgresql/patches/patch-aj
cvs rdiff -r1.5 -r0 pkgsrc/databases/postgresql/patches/patch-ak
cvs rdiff -r1.5 -r1.6 pkgsrc/databases/postgresql/patches/patch-al
cvs rdiff -r1.6 -r1.7 pkgsrc/databases/postgresql/patches/patch-am

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.