users/simon/postgres.git
17 years agoinformation_schema.key_column_usage.position_in_unique_constraint was
Tom Lane [Tue, 25 Nov 2008 20:47:55 +0000 (20:47 +0000)]
information_schema.key_column_usage.position_in_unique_constraint was
misdocumented as not being implemented.  In reality it has worked since
the release of 8.2.

17 years agoUse ResourceOwners in the snapshot manager, instead of attempting to track them
Alvaro Herrera [Tue, 25 Nov 2008 20:28:29 +0000 (20:28 +0000)]
Use ResourceOwners in the snapshot manager, instead of attempting to track them
by hand.  As an added bonus, the new code is smaller and more understandable,
and the ugly loops are gone.

This had been discussed all along but never implemented.  It became clear that
it really needed to be fixed after a bug report by Pavan Deolasee.

17 years agoRemove PGINTERVALSTYLE from the set of special environment variables for
Tom Lane [Tue, 25 Nov 2008 19:30:42 +0000 (19:30 +0000)]
Remove PGINTERVALSTYLE from the set of special environment variables for
libpq.  As noted by Peter, adding this variable created a risk of unexpected
connection failures when talking to older server versions, and since it
doesn't do anything you can't do with PGOPTIONS, it doesn't seem really
necessary.  Removing it does occasion a few extra lines in pg_regress.c,
but saving a getenv() call per libpq connection attempt is perhaps worth
that anyway.

17 years agoOmit src/port/pipe.c on non-Windows platforms. It's useless and draws
Tom Lane [Tue, 25 Nov 2008 18:19:31 +0000 (18:19 +0000)]
Omit src/port/pipe.c on non-Windows platforms.  It's useless and draws
complaints about empty object files on some platforms, eg Darwin.

17 years agoIf pg_ctl stop fails, print an error message and exit (instead of going out
Peter Eisentraut [Tue, 25 Nov 2008 11:49:35 +0000 (11:49 +0000)]
If pg_ctl stop fails, print an error message and exit (instead of going out
of our way to ignore the exit status).  If this ever really happens, worst
case you will not see the "score" at the bottom of the test run.

17 years agoDisable FNM_CASEFOLD. Need a proper solution later, but just comment
Magnus Hagander [Mon, 24 Nov 2008 19:19:46 +0000 (19:19 +0000)]
Disable FNM_CASEFOLD. Need a proper solution later, but just comment
it out for now so the buildfarm recovers.

17 years agoMove FAQ_AIX information to installation instructions.
Peter Eisentraut [Mon, 24 Nov 2008 11:59:37 +0000 (11:59 +0000)]
Move FAQ_AIX information to installation instructions.

The information on why the shared libraries are built the way they are
was not relevant to end users and has been made a mailing list archive
link in Makefile.shlib.

17 years agoAdd support for matching wildcard server certificates to the new SSL code.
Magnus Hagander [Mon, 24 Nov 2008 09:15:16 +0000 (09:15 +0000)]
Add support for matching wildcard server certificates to the new SSL code.