Accepted postgresql-8.4 8.4.9-0squeeze1~bpo50+1 (source all i386)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Tue, 18 Oct 2011 09:54:04 +0200
Source: postgresql-8.4
Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 postgresql-8.4 postgresql-client-8.4 postgresql-server-dev-8.4 postgresql-doc-8.4 postgresql-contrib-8.4 postgresql-plperl-8.4 postgresql-plpython-8.4 postgresql-pltcl-8.4 postgresql postgresql-client postgresql-doc postgresql-contrib
Architecture: source all i386
Version: 8.4.9-0squeeze1~bpo50+1
Distribution: lenny-backports
Urgency: low
Maintainer: Martin Pitt <mpitt@debian.org>
Changed-By: Gerfried Fuchs <rhonda@debian.org>
Description:
libecpg-compat3 - older version of run-time library for ECPG programs
libecpg-dev - development files for ECPG (Embedded PostgreSQL for C)
libecpg6 - run-time library for ECPG programs
libpgtypes3 - shared library libpgtypes for PostgreSQL 8.4
libpq-dev - header files for libpq5 (PostgreSQL library)
libpq5 - PostgreSQL C client library
postgresql - object-relational SQL database (supported version)
postgresql-8.4 - object-relational SQL database, version 8.4 server
postgresql-client - front-end programs for PostgreSQL (supported version)
postgresql-client-8.4 - front-end programs for PostgreSQL 8.4
postgresql-contrib - additional facilities for PostgreSQL (supported version)
postgresql-contrib-8.4 - additional facilities for PostgreSQL
postgresql-doc - documentation for the PostgreSQL database management system
postgresql-doc-8.4 - documentation for the PostgreSQL database management system
postgresql-plperl-8.4 - PL/Perl procedural language for PostgreSQL 8.4
postgresql-plpython-8.4 - PL/Python procedural language for PostgreSQL 8.4
postgresql-pltcl-8.4 - PL/Tcl procedural language for PostgreSQL 8.4
postgresql-server-dev-8.4 - development files for PostgreSQL 8.4 server-side programming
Closes: 628503 631285
Changes:
postgresql-8.4 (8.4.9-0squeeze1~bpo50+1) lenny-backports; urgency=low
.
* Rebuild for lenny-backports.
.
postgresql-8.4 (8.4.9-0squeeze1) stable-security; urgency=low
.
* New upstream bug fix/security release:
- Fix bugs in indexing of in-doubt HOT-updated tuples.
These bugs could result in index corruption after reindexing a
system catalog. They are not believed to affect user indexes.
- Fix multiple bugs in GiST index page split processing.
The probability of occurrence was low, but these could lead to
index corruption.
- Fix possible buffer overrun in tsvector_concat().
The function could underestimate the amount of memory needed for
its result, leading to server crashes.
- Fix crash in xml_recv when processing a "standalone" parameter.
- Make pg_options_to_table return NULL for an option with no value.
Previously such cases would result in a server crash.
- Avoid possibly accessing off the end of memory in "ANALYZE" and in
SJIS-2004 encoding conversion.
This fixes some very-low-probability server crash scenarios.
- Prevent intermittent hang in interactions of startup process with
bgwriter process.
This affected recovery in non-hot-standby cases.
- Fix race condition in relcache init file invalidation.
There was a window wherein a new backend process could read a stale
init file but miss the inval messages that would tell it the data
is stale. The result would be bizarre failures in catalog accesses,
typically "could not read block 0 in file ..." later during
startup.
- Fix memory leak at end of a GiST index scan.
Commands that perform many separate GiST index scans, such as
verification of a new GiST-based exclusion constraint on a table
already containing many rows, could transiently require large
amounts of memory due to this leak.
- Fix incorrect memory accounting (leading to possible memory bloat)
in tuplestores supporting holdable cursors and plpgsql's RETURN
NEXT command.
- Fix performance problem when constructing a large, lossy bitmap.
- Fix join selectivity estimation for unique columns.
This fixes an erroneous planner heuristic that could lead to poor
estimates of the result size of a join.
- Fix nested PlaceHolderVar expressions that appear only in
sub-select target lists. This mistake could result in outputs of an
outer join incorrectly appearing as NULL.
- Allow nested EXISTS queries to be optimized properly.
- Fix array- and path-creating functions to ensure padding bytes are
zeroes. This avoids some situations where the planner will think that
semantically-equal constants are not equal, resulting in poor
optimization.
- Fix "EXPLAIN" to handle gating Result nodes within inner-indexscan
subplans. The usual symptom of this oversight was "bogus varno" errors.
- Work around gcc 4.6.0 bug that breaks WAL replay. This could lead to
loss of committed transactions after a server crash.
- Fix dump bug for VALUES in a view.
- Disallow SELECT FOR UPDATE/SHARE on sequences.
This operation doesn't work as expected and can lead to failures.
- Fix "VACUUM" so that it always updates pg_class.reltuples/relpages.
This fixes some scenarios where autovacuum could make increasingly
poor decisions about when to vacuum tables.
- Defend against integer overflow when computing size of a hash table.
- Fix cases where "CLUSTER" might attempt to access already-removed
TOAST data.
- Fix portability bugs in use of credentials control messages for
"peer" authentication.
- Fix SSPI login when multiple roundtrips are required.
The typical symptom of this problem was "The function requested is
not supported" errors during SSPI login.
- Throw an error if "pg_hba.conf" contains hostssl but SSL is
disabled. This was concluded to be more user-friendly than the
previous behavior of silently ignoring such lines.
- Fix typo in pg_srand48 seed initialization.
This led to failure to use all bits of the provided seed. This
function is not used on most platforms (only those without
srandom), and the potential security exposure from a
less-random-than-expected seed seems minimal in any case.
- Avoid integer overflow when the sum of LIMIT and OFFSET values
exceeds 2^63.
- Add overflow checks to int4 and int8 versions of generate_series().
- Fix trailing-zero removal in to_char(). In a format with FM and no
digit positions after the decimal point, zeroes to the left of the
decimal point could be removed incorrectly.
- Fix pg_size_pretty() to avoid overflow for inputs close to 2^63.
- Weaken plpgsql's check for typmod matching in record values.
An overly enthusiastic check could lead to discarding length
modifiers that should have been kept.
- Fix pg_upgrade to preserve toast tables' relfrozenxids during an
upgrade from 8.3. Failure to do this could lead to "pg_clog" files
being removed too soon after the upgrade.
- Fix psql's counting of script file line numbers during COPY from a
different file.
- Fix pg_restore's direct-to-database mode for
standard_conforming_strings. pg_restore could emit incorrect commands
when restoring directly to a database server from an archive file that
had been made with standard_conforming_strings set to on.
- Be more user-friendly about unsupported cases for parallel
pg_restore. This change ensures that such cases are detected and
reported before any restore actions have been taken.
- Fix write-past-buffer-end and memory leak in libpq's LDAP service
lookup code.
- In libpq, avoid failures when using nonblocking I/O and an SSL
connection.
- Improve libpq's handling of failures during connection startup.
In particular, the response to a server report of fork() failure
during SSL connection startup is now saner.
- Improve libpq's error reporting for SSL failures.
- Fix PQsetvalue() to avoid possible crash when adding a new tuple to
a PGresult originally obtained from a server query.
- Make ecpglib write double values with 15 digits precision.
- In ecpglib, be sure LC_NUMERIC setting is restored after an error.
- Apply upstream fix for blowfish signed-character bug
(CVE-2011-2483) (Closes: #631285)
"contrib/pg_crypto"'s blowfish encryption code could give wrong
results on platforms where char is signed (which is most), leading
to encrypted passwords being weaker than they should be.
- Fix memory leak in "contrib/seg".
- Fix pgstatindex() to give consistent results for empty indexes.
- Allow building with perl 5.14. (Closes: #628503)
* 15-revert-typmod-check.patch: Update for new upstream release.
Checksums-Sha1:
be6c5db54ed586f98c5bf3818fb5b368b0bf3c46 2231 postgresql-8.4_8.4.9-0squeeze1~bpo50+1.dsc
08e2a6f939e221437f8cfcc044f0f29210e43a78 17853113 postgresql-8.4_8.4.9.orig.tar.gz
7dca1764c23161ff4e284693bb45b2b8937ad7c4 50264 postgresql-8.4_8.4.9-0squeeze1~bpo50+1.diff.gz
679c49abe24d33fe9d064651c4859037902a33ea 1937770 postgresql-doc-8.4_8.4.9-0squeeze1~bpo50+1_all.deb
456765b0c5a221c93d196dc731bf9eba8d57b202 23846 postgresql_8.4.9-0squeeze1~bpo50+1_all.deb
957056386a3eafbd264fde21b80a664e3cafedc4 23820 postgresql-client_8.4.9-0squeeze1~bpo50+1_all.deb
3b2c7e6b9e384b4b26d87bbf34cd647134885ed5 23664 postgresql-doc_8.4.9-0squeeze1~bpo50+1_all.deb
b6d35f582c6e7f3b6e2e9350aef83ae6191fc728 23716 postgresql-contrib_8.4.9-0squeeze1~bpo50+1_all.deb
6f11956d22f941e0aea6e7bfebbf94336c1aa7ff 233854 libpq-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
80f42478cd3deef61c27cbafae657987298a9824 154802 libpq5_8.4.9-0squeeze1~bpo50+1_i386.deb
0afb60336a1328f165bf2f21d9996d3e89bf4963 95004 libecpg6_8.4.9-0squeeze1~bpo50+1_i386.deb
64ca204c0798d9aa03e235f94bda9db692b5a87f 252688 libecpg-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
8db123f3d7e30006d86965143fd3a3c6a3f83da0 31100 libecpg-compat3_8.4.9-0squeeze1~bpo50+1_i386.deb
8ac4a65b52ac4fdd8962e905e2fd7b2d40fdff0b 54968 libpgtypes3_8.4.9-0squeeze1~bpo50+1_i386.deb
97c6704c127d961a2f0b27b32a5db7e8563e9216 5320080 postgresql-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
650e7ac1c9092c17c60c7154903b88a2c9ab7e2d 1447802 postgresql-client-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
df0c241b94539452ae58a81065c9fe0435a63b46 634076 postgresql-server-dev-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
e73f0ad3705b6eab3a311de9f4fa1ed49b482f7c 390616 postgresql-contrib-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
223c72dbc0cc4c763e884599d691018dbaed3aec 59716 postgresql-plperl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
3dc4db816fe18b1c41e1b4228fd89949c5d34575 58410 postgresql-plpython-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
b7bdcd78551619f56a032cba79343f6739a98dd3 46032 postgresql-pltcl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
Checksums-Sha256:
78b9114c1ec5986873550db03718f4cf926e8c2cf93cf692a059d45458bbfc60 2231 postgresql-8.4_8.4.9-0squeeze1~bpo50+1.dsc
d23ab8edf48f7e058ddc8ef2d97159a0da37c328061bc287255288868d781a57 17853113 postgresql-8.4_8.4.9.orig.tar.gz
2467c99028fc02832fc028383386671428bc5003161c700d2324978e2ff80607 50264 postgresql-8.4_8.4.9-0squeeze1~bpo50+1.diff.gz
8675b146b9d23d47e4ef19eca144393cd0f16e9e0ba1d15d7776157d48ee4427 1937770 postgresql-doc-8.4_8.4.9-0squeeze1~bpo50+1_all.deb
eb793dc6d169457a18313fcf039d452c1ad38237bddc03c4f99ddd7719e1a4b8 23846 postgresql_8.4.9-0squeeze1~bpo50+1_all.deb
03ffe6cc822c54a413893f58ffec630414a24246fc8951fe16f6474bbc316c78 23820 postgresql-client_8.4.9-0squeeze1~bpo50+1_all.deb
798a881232da022d92fd759b40fb95c475a08b0d526c96b6d5c891aa1fb32e7f 23664 postgresql-doc_8.4.9-0squeeze1~bpo50+1_all.deb
5a71ecd98f2c14922814e663a760c805e95ba3f2b778216abd4a62075dbbf4dd 23716 postgresql-contrib_8.4.9-0squeeze1~bpo50+1_all.deb
5a36a046b24400f80a5c3febc39a0cabcc490c5c565b9965867923e565266323 233854 libpq-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
5dabebf559d261ecc0eaf32e3268152625783a7a5420400908d55b7590df8ba4 154802 libpq5_8.4.9-0squeeze1~bpo50+1_i386.deb
c10d146170d88474f0cb3b88b283f31fe68e48a483db4cfd89b2a11b22e576f9 95004 libecpg6_8.4.9-0squeeze1~bpo50+1_i386.deb
a9492da67dd55770ddfce68d226fba2e5ffec26ea1a5846fdbab7072decbcb35 252688 libecpg-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
194f3e15e23a4aee530657977457b37d3fd9320df70e60a2f3ea009d3e402751 31100 libecpg-compat3_8.4.9-0squeeze1~bpo50+1_i386.deb
c3275cea8c2afe83c65fe86ab2aad6ee8caab451d35c793ac13264ccd60ff0fb 54968 libpgtypes3_8.4.9-0squeeze1~bpo50+1_i386.deb
d8a46699e177814993008254d9f2924dec49a951599031f3ac81a3ab0b3cb046 5320080 postgresql-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
cf7fd3eeb587f7e8adc3a2fc09ca4fcddd1454f1a70ad8443bfadb18e9d73dd8 1447802 postgresql-client-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
a0cbdfd3881e4b7d945be1e6a846e5ab4c6a73945ffea6acfa312cc1a901ad73 634076 postgresql-server-dev-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
e6c549518669ce441f54ff222b12c47e465c6ef5764f6da283a6f76be45eea0d 390616 postgresql-contrib-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
de1dae80843003bb6215f0f6ae8bdf0ffee2a0a0a2f3464549e60211d84880c2 59716 postgresql-plperl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
5e1a86aeae11a7f9088396c4054269cf161e2e89c37fc479d0a64d1e131f60e7 58410 postgresql-plpython-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
c162328355b8660e56e38a5f39f3bf8311ff9cf847a632c115b41208d502bff8 46032 postgresql-pltcl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
Files:
d390ece1313b8bf7583747bff55117e4 2231 database optional postgresql-8.4_8.4.9-0squeeze1~bpo50+1.dsc
7f69c8bb6b7994cbd863685a2d65f4db 17853113 database optional postgresql-8.4_8.4.9.orig.tar.gz
9097149e5fb136b4cf371a830c0dc93e 50264 database optional postgresql-8.4_8.4.9-0squeeze1~bpo50+1.diff.gz
178077b4b418ccf3c8aaab8589833ea0 1937770 doc optional postgresql-doc-8.4_8.4.9-0squeeze1~bpo50+1_all.deb
3136676770ea5ac84a86aa47abc1ff0f 23846 database optional postgresql_8.4.9-0squeeze1~bpo50+1_all.deb
1256f863c078a9ce3b5cb8aa34c25db9 23820 database optional postgresql-client_8.4.9-0squeeze1~bpo50+1_all.deb
a5759c854a676d7e9e7b65f80365c157 23664 doc optional postgresql-doc_8.4.9-0squeeze1~bpo50+1_all.deb
259a3ef4f240288558fb83fdf225611c 23716 database optional postgresql-contrib_8.4.9-0squeeze1~bpo50+1_all.deb
8b29edcff02148e52e58f9f5f10626ae 233854 libdevel optional libpq-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
49c703a004c06d9750fcb2bb3cc7bdd9 154802 libs optional libpq5_8.4.9-0squeeze1~bpo50+1_i386.deb
1d93bd1d46fc668c555a1209e76a51b2 95004 libs optional libecpg6_8.4.9-0squeeze1~bpo50+1_i386.deb
052454bc8982016a924cef858016e4ec 252688 libdevel optional libecpg-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
7189ae128f5cf22af24e2c333a13f697 31100 libs optional libecpg-compat3_8.4.9-0squeeze1~bpo50+1_i386.deb
160ed2a51726e13eae1773e731217072 54968 libs optional libpgtypes3_8.4.9-0squeeze1~bpo50+1_i386.deb
a59ff570c03a030f022bdd7e5c0325f4 5320080 database optional postgresql-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
6217170caeb5ebd6a3fea9459985fd3c 1447802 database optional postgresql-client-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
ef7390ea95bc26fdfd8a7f266403acd3 634076 libdevel optional postgresql-server-dev-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
d98a9509fcaae900619c1a4ddee4bf64 390616 database optional postgresql-contrib-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
e0a01d44bec2668be7a5836e2bf20d28 59716 database optional postgresql-plperl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
497c6da0e9440c7d9ff97bcf93e63a37 58410 database optional postgresql-plpython-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
9cc046c2a0e58d4dfc53f5e03336bfb7 46032 database optional postgresql-pltcl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQEcBAEBCAAGBQJOnUL/AAoJEDH85+fdB5Rhi1MIAKyA61jamn3VLBeBz3VUqM5p
TcQN1UpX6B9ogFfO2a0o2l38Ht8Tx7iMxifU8X5m4wT3g3zBM7WZ7CbP30s8fwip
p/pACmUzYhacwxZvguR0iB+DsBW8rj/B+vWhJON/AMOc7fNNLnkqkoc1d5X4DxZW
A22Ax2QFHDoMB0HlzkYo5Ldjvh/gmagAptwXRdTqHCjPg3268nPEBGg4+YHCVa5c
257yt7LijQFl3jR1rqKKSkXOIq/Hg6TIE+uBKoBcsZX1sQddBSPsh8WYjL0/g+6c
Cpn9hO+/nDSa1jD56YpSKNXx8fiEdpwN4uXeVn89S7iHisAUnB+IIH3NQIV7vL0=
=RLel
-----END PGP SIGNATURE-----
Accepted:
libecpg-compat3_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/libecpg-compat3_8.4.9-0squeeze1~bpo50+1_i386.deb
libecpg-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/libecpg-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
libecpg6_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/libecpg6_8.4.9-0squeeze1~bpo50+1_i386.deb
libpgtypes3_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/libpgtypes3_8.4.9-0squeeze1~bpo50+1_i386.deb
libpq-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/libpq-dev_8.4.9-0squeeze1~bpo50+1_i386.deb
libpq5_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/libpq5_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-8.4_8.4.9-0squeeze1~bpo50+1.diff.gz
to main/p/postgresql-8.4/postgresql-8.4_8.4.9-0squeeze1~bpo50+1.diff.gz
postgresql-8.4_8.4.9-0squeeze1~bpo50+1.dsc
to main/p/postgresql-8.4/postgresql-8.4_8.4.9-0squeeze1~bpo50+1.dsc
postgresql-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-8.4_8.4.9.orig.tar.gz
to main/p/postgresql-8.4/postgresql-8.4_8.4.9.orig.tar.gz
postgresql-client-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-client-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-client_8.4.9-0squeeze1~bpo50+1_all.deb
to main/p/postgresql-8.4/postgresql-client_8.4.9-0squeeze1~bpo50+1_all.deb
postgresql-contrib-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-contrib-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-contrib_8.4.9-0squeeze1~bpo50+1_all.deb
to main/p/postgresql-8.4/postgresql-contrib_8.4.9-0squeeze1~bpo50+1_all.deb
postgresql-doc-8.4_8.4.9-0squeeze1~bpo50+1_all.deb
to main/p/postgresql-8.4/postgresql-doc-8.4_8.4.9-0squeeze1~bpo50+1_all.deb
postgresql-doc_8.4.9-0squeeze1~bpo50+1_all.deb
to main/p/postgresql-8.4/postgresql-doc_8.4.9-0squeeze1~bpo50+1_all.deb
postgresql-plperl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-plperl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-plpython-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-plpython-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-pltcl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-pltcl-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql-server-dev-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
to main/p/postgresql-8.4/postgresql-server-dev-8.4_8.4.9-0squeeze1~bpo50+1_i386.deb
postgresql_8.4.9-0squeeze1~bpo50+1_all.deb
to main/p/postgresql-8.4/postgresql_8.4.9-0squeeze1~bpo50+1_all.deb
Reply to: