Commit graph

11 commits

Author SHA1 Message Date
Palle Girgensohn
d587b3a37a Welcome to PostgreSQL 8.1.
The new release includes performance improvements and advanced SQL
features which will support bigger data warehouses, higher-volume
transaction processing, and more complex distributed enterprise
software.

Major new features in this release include:

      Roles:
           PostgreSQL now supports database roles, which simplify the
           management of large numbers of users with complex
           overlapping database rights.

      IN/OUT Parameters:
           PostgreSQL functions now support IN, OUT and INOUT
           parameters, which substantially improves support of complex
           business logic for J2EE and .NET applications.

      Two-Phase Commit (2PC):
           Long in demand for WAN applications and heterogeneous data
           centers using PostgreSQL, this feature allows
           ACID-compliant transactions across widely separated
           servers.

Some Performance Enhancements found in this release include:

      Improved Multiprocessor (SMP) Performance:
           The buffer manager for 8.1 has been enhanced to scale almost
           linearly with the number of processors, leading to significant
           performance gains on 8-way, 16-way, dual-core, and multi-core
           CPU servers.

      Bitmap Scan:
           Indexes will be dynamically converted to bitmaps in memory when
           appropriate, giving up to twenty times faster index performance
           on complex queries against very large tables.

      Table Partitioning:
           The query planner is now able to avoid scanning whole sections
           of a large table using a technique known as Constraint
           Exclusion.

       Shared Row Locking:
           PostgreSQL's "better than row-level locking" now supports even
           higher levels of concurrency through the addition of shared
           row locks for foreign keys.

For a more complete listing of changes in this release, please see the
Release Notes visible at:

http://www.postgresql.org/docs/current/static/release.html#RELEASE-8-1
2005-11-10 02:23:38 +00:00
Palle Girgensohn
88413af3b8 In order to address a potential security hole recently identified with
the "LOAD" option, the PostgreSQL Global Development Group is
announcing the release of new versions of PostgreSQL.

Update to 7.3.9, 7.4.7 & 8.0.1.

Take the opportunity to reset PORTREVISION of slave ports.

Back out name change of startup script. The new script uses rc.subr(8),
and as such also uses rcorder(8). But, rcorder does not exist in FreeBSD
4.x. Hence rename the script it back to the top of the directory
list. [1]

The periodic script should of course be executable. [2]

[1] Noted by Niels Chr. Bank-Pedersen <ncbp at bank-pedersen dot dk>
[2] Noted by Fritz Heinrichmeyer <fritz.heinrichmeyer at fernuni-hagen dot de>
2005-02-03 09:30:27 +00:00
Palle Girgensohn
504e1a160a Bump portrevision 2005-01-31 01:58:58 +00:00
Palle Girgensohn
34fa6c853e Split the postgresql ports into a server and a client part.
All ports depending on postgresql shall use the USE_PGSQL=yes knob
defined in Mk/bsd.ports.mk. Bumping portrevisions where needed.

PR:		75344
Approved by:	portmgr@ (kris), ade & sean (mentors)
2005-01-31 00:35:55 +00:00
Palle Girgensohn
ae413f56b6 Add myself as committer, and use my @FreeBSD.org address.
Approved by: ade (mentor)
2004-12-06 03:59:56 +00:00
Vanilla I. Shu
10b5ded080 Upgrade to 7.4.3.
PR:		ports/68456
Submitted by:	maintainer
2004-06-28 21:48:56 +00:00
Joe Marcus Clarke
053fdb6a6b Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
2004-02-04 05:21:48 +00:00
Sean Chittenden
8a928af72d Introduce the world to PostgreSQL 7.4! By and large this release is
regarded as a major release with features with interest to those with
large databases.  The updates are extensive and the best source of info
is in the release notes.  Enjoy and direct questions to database@!

Release notes:
http://www.postgresql.org/docs/7.4/static/release.html#RELEASE-7-4

PR:		ports/59403, ports/59404, ports/59393, ports/59394,
		ports/59395, ports/59397, ports/59398, ports/59402, &&
		ports/59401
Submitted by:	maintainer
Approved by:	marcus (portmgr@ hat)
2003-12-04 12:00:49 +00:00
Sergey A. Osokin
dc6c51af2a Use another way for PortgreSQL slave ports (make without -C),
because much more people still use old versions of make.
For committers: please use the same way for following
PRs: 56345-56350.

Spotted by:	Dan Langille <dan@langille.org> via FreshPorts
Submitted by:	Palle Girgensohn <girgen@pingpong.net> (maintainer)
2003-09-04 09:29:43 +00:00
Sergey A. Osokin
5ea0b8a4c0 Add ipc_check and reindexdb.
Change the way postgres slave ports build: use ${MAKE} -V instead of .include.
Use ${USE_BISON}.
Bump ${PORTREVISION}.
Utilize ${DOCSDIR}. [1]

Submitted by:	Palle Girgensohn <girgen@pingpong.net> (maintainer),
		osa [1]
Approved by:	maintainer
PR:		56342
2003-09-03 15:22:23 +00:00
Edwin Groothuis
16d1da8428 New port: postgresql-contrib
New port, containing all contrib stuff distributed with postgresql

	From the README:

	The PostgreSQL contrib tree
	---------------------------

	This subtree contains porting tools, analysis utilities,
	and plug-in features that are not part of the core PostgreSQL
	system, mainly because they address a limited audience or
	are too experimental to be part of the main source tree.
	This does not preclude their usefulness.

	Each subdirectory contains a README file with information
	about the module.  Most items can be built with `gmake all'
	and installed with `gmake install' in the usual fashion,
	after you have run the `configure' script in the top-level
	directory.  Some directories supply new user-defined
	functions, operators, or types.  After you have installed
	the files you need to register the new entities in the
	database system by running the commands in the supplied
	.sql file.  For example,

		$ psql -d dbname -f module.sql

	See the PostgreSQL documentation for more information about
	this procedure.

PR:		ports/53181
Submitted by:	Palle Girgensohn <girgen@pingpong.net>
2003-08-24 12:17:02 +00:00