Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: jlam
Date: Sun Sep 19 04:24:56 UTC 1999
Modified Files:
pkgsrc/databases/postgresql: Makefile
pkgsrc/databases/postgresql/files: md5 patch-sum pgsql.sh.tmpl
post-install-notes
pkgsrc/databases/postgresql/patches: patch-aa patch-ab patch-ac
patch-ad patch-ae patch-af patch-ag
pkgsrc/databases/postgresql/pkg: REQ
Added Files:
pkgsrc/databases/postgresql/files: Makefile.custom
pkgsrc/databases/postgresql/patches: patch-ah patch-ai patch-aj
patch-ak patch-al patch-am
pkgsrc/databases/postgresql/pkg: PLIST.dirrm PLIST.doc PLIST.notcl
PLIST.tcl
Removed Files:
pkgsrc/databases/postgresql/pkg: PLIST
Log Message:
Update postgresql to 6.5.1. Completely libtoolized and ldconfig statements
removed, but this should still function correctly on a.out systems. This
package was originally submitted by D'Arcy J.M. Cain, but with major
overhauling by me.
Closes PR#7865 and relevant part of PR#8299.
Major changes from version 6.4.2:
Multi-version concurrency control(MVCC)
This removes our old table-level locking, and replaces it with a
locking system that is superior to most commercial database
systems. In a traditional system, each row that is modified is
locked until committed, preventing reads by other users. MVCC
uses the natural multi-version nature of PostgreSQL to allow
readers to continue reading consistent data during writer
activity. Writers continue to use the compact pg_log transaction
system. This is all performed without having to allocate a lock
for every row like traditional database systems. So, basically,
we no longer are restricted by simple table-level locking; we
have something better than row-level locking.
Hot backups from pg_dump
pg_dump takes advantage of the new MVCC features to give a
consistant database dump/backup while the database stays online
and available for queries.
Numeric data type
We now have a true numeric data type, with user-specified
precision.
Temporary tables
Temporary tables are guaranteed to have unique names within a
database session, and are destroyed on session exit.
New SQL features
We now have CASE, INTERSECT, and EXCEPT statement support. We
have new LIMIT/OFFSET, SET TRANSACTION ISOLATION LEVEL, SELECT
... FOR UPDATE, and an improved LOCK TABLE command.
Speedups
We continue to speed up PostgreSQL, thanks to the variety of
talents within our team. We have sped up memory allocation,
optimization, table joins, and row transfer routines.
Ports
We continue to expand our port list, this time including
WinNT/ix86 and NetBSD/arm32.
Interfaces
Most interfaces have new versions, and existing functionality
has been improved.
Documentation
New and updated material is present throughout the
documentation. New FAQs have been contributed for SGI and AIX
platforms. The Tutorial has introductory information on SQL from
Stefan Simkovics. For the User's Guide, there are reference pages
covering the postmaster and more utility programs, and a new
appendix contains details on date/time behavior. The
Administrator's Guide has a new chapter on troubleshooting from
Tom Lane. And the Programmer's Guide has a description of query
processing, also from Stefan, and details on obtaining the
Postgres source tree via anonymous CVS and CVSup.
To generate a diff of this commit:
cvs rdiff -r1.39 -r1.40 pkgsrc/databases/postgresql/Makefile
cvs rdiff -r0 -r1.1 pkgsrc/databases/postgresql/files/Makefile.custom
cvs rdiff -r1.4 -r1.5 pkgsrc/databases/postgresql/files/md5
cvs rdiff -r1.3 -r1.4 pkgsrc/databases/postgresql/files/patch-sum \
pkgsrc/databases/postgresql/files/pgsql.sh.tmpl
cvs rdiff -r1.2 -r1.3 pkgsrc/databases/postgresql/files/post-install-notes
cvs rdiff -r1.1 -r1.2 pkgsrc/databases/postgresql/patches/patch-aa
cvs rdiff -r1.5 -r1.6 pkgsrc/databases/postgresql/patches/patch-ab \
pkgsrc/databases/postgresql/patches/patch-af
cvs rdiff -r1.3 -r1.4 pkgsrc/databases/postgresql/patches/patch-ac \
pkgsrc/databases/postgresql/patches/patch-ag
cvs rdiff -r1.4 -r1.5 pkgsrc/databases/postgresql/patches/patch-ad
cvs rdiff -r1.8 -r1.9 pkgsrc/databases/postgresql/patches/patch-ae
cvs rdiff -r0 -r1.3 pkgsrc/databases/postgresql/patches/patch-ah \
pkgsrc/databases/postgresql/patches/patch-ai \
pkgsrc/databases/postgresql/patches/patch-aj
cvs rdiff -r0 -r1.1 pkgsrc/databases/postgresql/patches/patch-ak \
pkgsrc/databases/postgresql/patches/patch-al \
pkgsrc/databases/postgresql/patches/patch-am
cvs rdiff -r1.9 -r0 pkgsrc/databases/postgresql/pkg/PLIST
cvs rdiff -r0 -r1.1 pkgsrc/databases/postgresql/pkg/PLIST.dirrm \
pkgsrc/databases/postgresql/pkg/PLIST.doc \
pkgsrc/databases/postgresql/pkg/PLIST.notcl \
pkgsrc/databases/postgresql/pkg/PLIST.tcl
cvs rdiff -r1.1 -r1.2 pkgsrc/databases/postgresql/pkg/REQ
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index