diff options
author | adam <adam@pkgsrc.org> | 2008-06-20 08:27:57 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2008-06-20 08:27:57 +0000 |
commit | 6fbe71741ad380258f94ed5627df4b78e1047ada (patch) | |
tree | da0ecb1cb09f27791883882fc601c45de7663c69 /databases/postgresql81-client | |
parent | 33296c1f96099b54f931e45bc2e0ea845f896261 (diff) | |
download | pkgsrc-6fbe71741ad380258f94ed5627df4b78e1047ada.tar.gz |
Changes 8.1.13:
* Make pg_get_ruledef() parenthesize negative constants (Tom)
Before this fix, a negative constant in a view or rule might be
dumped as, say, -42::integer, which is subtly incorrect: it should
be (-42)::integer due to operator precedence rules. Usually this
would make little difference, but it could interact with another
recent patch to cause PostgreSQL to reject what had been a valid
"SELECT DISTINCT" view query. Since this could result in pg_dump
output failing to reload, it is being treated as a high-priority
fix. The only released versions in which dump output is actually
incorrect are 8.3.1 and 8.2.7.
* Make "ALTER AGGREGATE ... OWNER TO" update pg_shdepend (Tom)
This oversight could lead to problems if the aggregate was later
involved in a "DROP OWNED" or "REASSIGN OWNED" operation.
Diffstat (limited to 'databases/postgresql81-client')
-rw-r--r-- | databases/postgresql81-client/Makefile | 4 | ||||
-rw-r--r-- | databases/postgresql81-client/PLIST | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/databases/postgresql81-client/Makefile b/databases/postgresql81-client/Makefile index aa5f213f2a1..3deb3370bcc 100644 --- a/databases/postgresql81-client/Makefile +++ b/databases/postgresql81-client/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2008/01/18 05:06:29 tnn Exp $ +# $NetBSD: Makefile,v 1.9 2008/06/20 08:27:57 adam Exp $ PKGNAME= postgresql81-client-${BASE_VERS} -PKGREVISION= 1 COMMENT= PostgreSQL database client programs PKG_DESTDIR_SUPPORT= user-destdir @@ -37,6 +36,7 @@ CONFIGURE_ARGS+= --enable-thread-safety INSTALL_DIRS= src/include INSTALL_DIRS+= src/interfaces +INSTALL_DIRS+= src/port INSTALL_DIRS+= src/bin INSTALL_DIRS+= doc diff --git a/databases/postgresql81-client/PLIST b/databases/postgresql81-client/PLIST index 69c45357332..25894965b26 100644 --- a/databases/postgresql81-client/PLIST +++ b/databases/postgresql81-client/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2008/01/07 20:14:24 adam Exp $ +@comment $NetBSD: PLIST,v 1.10 2008/06/20 08:27:58 adam Exp $ ${PG_SUBPREFIX}bin/clusterdb ${PG_SUBPREFIX}bin/createdb ${PG_SUBPREFIX}bin/createlang @@ -398,6 +398,7 @@ ${PG_SUBPREFIX}include/sql3types.h ${PG_SUBPREFIX}include/sqlca.h ${PG_SUBPREFIX}lib/libecpg.la ${PG_SUBPREFIX}lib/libecpg_compat.la +${PG_SUBPREFIX}lib/libpgport.a ${PG_SUBPREFIX}lib/libpgtypes.la ${PG_SUBPREFIX}lib/libpq.la ${PG_SUBPREFIX}man/man1/clusterdb.1 @@ -1010,6 +1011,8 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-16.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-17.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-18.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-19.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-20.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-21.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-2.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-3.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-4.html @@ -1026,6 +1029,8 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-12.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-13.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-14.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-15.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-16.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-17.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-2.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-3.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-4.html @@ -1037,6 +1042,8 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-9.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-1.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-10.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-11.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-12.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-2.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-3.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-4.html |