[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Accepted postgresql-9.1 9.1.2-1 (source all amd64)



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 02 Dec 2011 14:39:18 +0100
Source: postgresql-9.1
Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 postgresql-9.1 postgresql-9.1-dbg postgresql-client-9.1 postgresql-server-dev-9.1 postgresql-doc-9.1 postgresql-contrib-9.1 postgresql-plperl-9.1 postgresql-plpython-9.1 postgresql-plpython3-9.1 postgresql-pltcl-9.1
Architecture: source amd64 all
Version: 9.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Martin Pitt <mpitt@debian.org>
Changed-By: Martin Pitt <mpitt@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 9.1
 libpq-dev  - header files for libpq5 (PostgreSQL library)
 libpq5     - PostgreSQL C client library
 postgresql-9.1 - object-relational SQL database, version 9.1 server
 postgresql-9.1-dbg - debug symbols for postgresql-9.1
 postgresql-client-9.1 - front-end programs for PostgreSQL 9.1
 postgresql-contrib-9.1 - additional facilities for PostgreSQL
 postgresql-doc-9.1 - documentation for the PostgreSQL database management system
 postgresql-plperl-9.1 - PL/Perl procedural language for PostgreSQL 9.1
 postgresql-plpython-9.1 - PL/Python procedural language for PostgreSQL 9.1
 postgresql-plpython3-9.1 - PL/Python 3 procedural language for PostgreSQL 9.1
 postgresql-pltcl-9.1 - PL/Tcl procedural language for PostgreSQL 9.1
 postgresql-server-dev-9.1 - development files for PostgreSQL 9.1 server-side programming
Closes: 646079
Changes: 
 postgresql-9.1 (9.1.2-1) unstable; urgency=low
 .
   * New upstream bug fix release:
     - Fix bugs in information_schema.referential_constraints view.
       This view was being insufficiently careful about matching the
       foreign-key constraint to the depended-on primary or unique key
       constraint. That could result in failure to show a foreign key
       constraint at all, or showing it multiple times, or claiming that
       it depends on a different constraint than the one it really does.
       Since the view definition is installed by initdb, merely upgrading
       will not fix the problem. If you need to fix this in an existing
       installation, you can (as a superuser) drop the information_schema
       schema then re-create it by sourcing
       "SHAREDIR/information_schema.sql". (Run pg_config --sharedir if
       you're uncertain where "SHAREDIR" is.) This must be repeated in
       each database to be fixed.
     - Make "contrib/citext"'s upgrade script fix collations of citext
       columns and indexes.
       Existing citext columns and indexes aren't correctly marked as
       being of a collatable data type during pg_upgrade from a pre-9.1
       server. That leads to operations on them failing with errors such
       as "could not determine which collation to use for string
       comparison". This change allows them to be fixed by the same script
       that upgrades the citext module into a proper 9.1 extension during
       CREATE EXTENSION citext FROM unpackaged.
       If you have a previously-upgraded database that is suffering from
       this problem, and you already ran the "CREATE EXTENSION" command,
       you can manually run (as superuser) the "UPDATE" commands found at
       the end of "SHAREDIR/extension/citext--unpackaged--1.0.sql". (Run
       pg_config --sharedir if you're uncertain where "SHAREDIR" is.)
     - Fix possible crash during "UPDATE" or "DELETE" that joins to the
       output of a scalar-returning function.
     - Fix incorrect replay of WAL records for GIN index updates.
     - Fix TOAST-related data corruption during CREATE TABLE dest AS
       SELECT - FROM src or INSERT INTO dest SELECT * FROM src.
     - Fix possible failures during hot standby startup.
     - Start hot standby faster when initial snapshot is incomplete.
     - Fix race condition during toast table access from stale syscache
       entries. The typical symptom was transient errors like "missing chunk
       number 0 for toast value NNNNN in pg_toast_2619", where the cited toast
       table would always belong to a system catalog.
     - Track dependencies of functions on items used in parameter default
       expressions. Previously, a referenced object could be dropped without
       having dropped or modified the function, leading to misbehavior when
       the function was used. Note that merely installing this update will not
       fix the missing dependency entries; to do that, you'd need to
       "CREATE OR REPLACE" each such function afterwards. If you have
       functions whose defaults depend on non-built-in objects, doing so
       is recommended.
     - Fix incorrect management of placeholder variables in nestloop joins.
       This bug is known to lead to "variable not found in subplan target
       list" planner errors, and could possibly result in wrong query
       output when outer joins are involved.
     - Fix window functions that sort by expressions involving aggregates.
     - Fix "MergeAppend child's targetlist doesn't match MergeAppend"
       planner errors.
     - Fix index matching for operators with both collatable and
       noncollatable inputs. In 9.1.0, an indexable operator that has a
       non-collatable left-hand input type and a collatable right-hand input
       type would not be recognized as matching the left-hand column's index.
       An example is the hstore ? text operator.
     - Allow inlining of set-returning SQL functions with multiple OUT
       parameters.
     - Don't trust deferred-unique indexes for join removal.
     - Make DatumGetInetP() unpack inet datums that have a 1-byte header,
       and add a new macro, DatumGetInetPP(), that does not.
     - Improve locale support in money type's input and output.
       Aside from not supporting all standard lc_monetary formatting
       options, the input and output functions were inconsistent, meaning
       there were locales in which dumped money values could not be
       re-read.
     - Don't let transform_null_equals affect CASE foo WHEN NULL ...
       constructs.  transform_null_equals is only supposed to affect foo =
       NULL expressions written directly by the user, not equality checks
       generated internally by this form of CASE.
     - Change foreign-key trigger creation order to better support
       self-referential foreign keys.
     - Fix IF EXISTS to work correctly in "DROP OPERATOR FAMILY".
     - Disallow dropping of an extension from within its own script.
     - Don't mark auto-generated types as extension members.
     - Cope with invalid pre-existing search_path settings during "CREATE
       EXTENSION".
     - Avoid floating-point underflow while tracking buffer allocation
       rate.
     - Prevent autovacuum transactions from running in serializable mode.
       Autovacuum formerly used the cluster-wide default transaction
       isolation level, but there is no need for it to use anything higher
       than READ COMMITTED, and using SERIALIZABLE could result in
       unnecessary delays for other processes.
     - Ensure walsender processes respond promptly to SIGTERM.
     - Exclude "postmaster.opts" from base backups.
     - Fix incorrect field alignment in ecpg's SQLDA area.
     - Preserve blank lines within commands in psql's command history.
       The former behavior could cause problems if an empty line was
       removed from within a string literal, for example.
     - Avoid platform-specific infinite loop in pg_dump.
     - Fix compression of plain-text output format in pg_dump.
       pg_dump has historically understood -Z with no -F switch to mean
       that it should emit a gzip-compressed version of its plain text
       output. Restore that behavior.
     - Fix pg_dump to dump user-defined casts between auto-generated
       types, such as table rowtypes.
     - Fix missed quoting of foreign server names in pg_dump.
     - Assorted fixes for pg_upgrade. Handle exclusion constraints correctly,
       avoid failures on Windows, don't complain about mismatched toast table
       names in 8.4 databases.
     - In PL/pgSQL, allow foreign tables to define row types.
     - Fix up conversions of PL/Perl functions' results.
       Restore the pre-9.1 behavior that PL/Perl functions returning void
       ignore the result value of their last Perl statement; 9.1.0 would
       throw an error if that statement returned a reference. Also, make
       sure it works to return a string value for a composite type, so
       long as the string meets the type's input format. In addition,
       throw errors for attempts to return Perl arrays or hashes when the
       function's declared result type is not an array or composite type,
       respectively. (Pre-9.1 versions rather uselessly returned strings
       like ARRAY(0x221a9a0) or HASH(0x221aa90) in such cases.)
     - Ensure PL/Perl strings are always correctly UTF8-encoded.
     - Use the preferred version of xsubpp to build PL/Perl, not
       necessarily the operating system's main copy.
     - Correctly propagate SQLSTATE in PL/Python exceptions.
     - Do not install PL/Python extension files for Python major versions
       other than the one built against.
     - Change all the "contrib" extension script files to report a useful
       error message if they are fed to psql. This should help teach people
       about the new method of using "CREATE EXTENSION" to load these files.
       In most cases, sourcing the scripts directly would fail anyway, but
       with harder-to-interpret messages.
     - Fix incorrect coding in "contrib/dict_int" and "contrib/dict_xsyn".
     - Remove "contrib/sepgsql" tests from the regular regression test
       mechanism. Since these tests require root privileges for setup, they're
       impractical to run automatically. Switch over to a manual approach
       instead, and provide a testing script to help with that.
     - Fix assorted errors in "contrib/unaccent"'s configuration file
       parsing.
     - Honor query cancel interrupts promptly in pgstatindex().
     - Revert unintentional enabling of WAL_DEBUG. Fortunately, as debugging
       tools go, this one is pretty cheap; but it's not intended to be enabled
       by default, so revert.
     - Ensure VPATH builds properly install all server header files.
     - Shorten file names reported in verbose error messages.
       Regular builds have always reported just the name of the C file
       containing the error message call, but VPATH builds formerly
       reported an absolute path name.
   * debian/rules: Fix build failure for binary-indep-only builds.
     (Closes: #646079)
Checksums-Sha1: 
 e5dc448ec79a788409c40764969438dcbe6cd590 3069 postgresql-9.1_9.1.2-1.dsc
 7d57b96eb1c764ec234c72b70511a5f7e23fb2b0 15424814 postgresql-9.1_9.1.2.orig.tar.bz2
 5a8d8fd2690ea7153906d8dd7db159da89f90c9b 25049 postgresql-9.1_9.1.2-1.debian.tar.gz
 ae80db98e792715eda6796af3f247ce413125a2f 575954 libpq-dev_9.1.2-1_amd64.deb
 5548dd0ec4f9ef356dbd5cb34544115755878a6b 494802 libpq5_9.1.2-1_amd64.deb
 81effc84315a668f6d31729027b112b7bc9b1184 433410 libecpg6_9.1.2-1_amd64.deb
 b08c3c412d2948e79268783b210a57ef148e0456 613090 libecpg-dev_9.1.2-1_amd64.deb
 4514a7a2c7dfed8ad2a1a7845bcb5bf9e2dc48d3 357362 libecpg-compat3_9.1.2-1_amd64.deb
 f891680323d7e2d5519de8eaf7c3a0a7b92a4a6d 379856 libpgtypes3_9.1.2-1_amd64.deb
 10882c29f7b17078c1ba8ecc717aaf9d6fa6cbb7 6070210 postgresql-9.1_9.1.2-1_amd64.deb
 2e41c7813a4ecbf160b749333b31f019c53ed4fa 6298402 postgresql-9.1-dbg_9.1.2-1_amd64.deb
 9f7cacda93ea66ed5599128f47fb26a6ea4ec46f 1848670 postgresql-client-9.1_9.1.2-1_amd64.deb
 0b321b2e144cb35815a477430e7cf3ef60a91666 1025428 postgresql-server-dev-9.1_9.1.2-1_amd64.deb
 444145e082f34cd1eaea5c84afc63646d1d5b69c 2865012 postgresql-doc-9.1_9.1.2-1_all.deb
 c9699118aafeb2649d5616ed82971f6244205ce5 806568 postgresql-contrib-9.1_9.1.2-1_amd64.deb
 f5c367edc6c9b5a339f83684c4453c9be8e5fba4 399648 postgresql-plperl-9.1_9.1.2-1_amd64.deb
 def42a61331be43db5e9c521af0e5d18262353d5 409742 postgresql-plpython-9.1_9.1.2-1_amd64.deb
 7f085837c805ef207d1af0e6ca11fc87445adf20 386940 postgresql-plpython3-9.1_9.1.2-1_amd64.deb
 3420bdb06f36553011fe57c7e69d0410177c4092 374160 postgresql-pltcl-9.1_9.1.2-1_amd64.deb
Checksums-Sha256: 
 0834f5d857abba8f3c7a38427d0e9980bfefb1eed3d3772b3c9b6c7e1eb451cc 3069 postgresql-9.1_9.1.2-1.dsc
 8d54ff514f5b2754e6e36b008c43d7bbf7daf541da608767cc5bdedb1de5db30 15424814 postgresql-9.1_9.1.2.orig.tar.bz2
 7c655f027f84bd5452ae7dfeb18b0560e0236c71656bf74edd8b835f0a516946 25049 postgresql-9.1_9.1.2-1.debian.tar.gz
 4da8472d7fe8c0cc122db20b752e25c59d57a862b5de4e9bab732185150f845d 575954 libpq-dev_9.1.2-1_amd64.deb
 58a7013d394483cfc720e941b94643404e0f135f19dc20b6339c937b5de1107e 494802 libpq5_9.1.2-1_amd64.deb
 3f0a531ef9cc664f5f0172438eeb538b35f5aa9a61134c24fec51c52168a3cd8 433410 libecpg6_9.1.2-1_amd64.deb
 608142754deb798a4ae290e0c1fbe0c64d458d7e5ea0a8950e8efc5f7a6b3ce7 613090 libecpg-dev_9.1.2-1_amd64.deb
 9f9106ece7f3cdc9ba22a27eaa2e4c0289740f90817fedad559c10c1acb43df7 357362 libecpg-compat3_9.1.2-1_amd64.deb
 74deedea52c22a3950697465379a03f9e8ddecdb62a51f4c6fda80456bf89b29 379856 libpgtypes3_9.1.2-1_amd64.deb
 033568bf02a3db305594f301392f6b8185358401686fc3cb38c36b1d526105fc 6070210 postgresql-9.1_9.1.2-1_amd64.deb
 411d2b6f9ff65523011bb41635de6517f64841b7950b1a0720ea807449139aa2 6298402 postgresql-9.1-dbg_9.1.2-1_amd64.deb
 aa01e2017da0d3c27d78fcb3c0e2c98e7bc9e67e32f57650b4c7dad17c8e6f26 1848670 postgresql-client-9.1_9.1.2-1_amd64.deb
 1d3bc8ecc8c2c3af439622c3cfc575b73cd3a1b251d061f559b3e5b3896c8217 1025428 postgresql-server-dev-9.1_9.1.2-1_amd64.deb
 5c3fa773c8f7201e23e0aae8331735b0c637eeabf66d1e241c5fbaafb04beeed 2865012 postgresql-doc-9.1_9.1.2-1_all.deb
 5fe135853e57b38fadb5711b880e74ee1a2e8bd7b7c70e4758054bd0d891fa49 806568 postgresql-contrib-9.1_9.1.2-1_amd64.deb
 70f8e6443ac3bbeb54fce631f287223b80c3ac3b0801c61ae0836e6d651cc3a7 399648 postgresql-plperl-9.1_9.1.2-1_amd64.deb
 b3e2bc7b9944c0eb2175404afe6b7f72f3d7404baab72c902286f359070f2182 409742 postgresql-plpython-9.1_9.1.2-1_amd64.deb
 5d17212ef2b65dfcdeeada18fb64521f3c3557552dbf2de3a3e994c403e08a07 386940 postgresql-plpython3-9.1_9.1.2-1_amd64.deb
 e4d9b0849f02d56b59585bd7647a955bdd08c44d25db5c9864e2cc35d4164c90 374160 postgresql-pltcl-9.1_9.1.2-1_amd64.deb
Files: 
 cc9d0c298524c2e12b0e8dfd96da1c63 3069 database optional postgresql-9.1_9.1.2-1.dsc
 7dbff52221954c46595313eb7f92c3e0 15424814 database optional postgresql-9.1_9.1.2.orig.tar.bz2
 c1e1b7d2a520a17118413b4898530377 25049 database optional postgresql-9.1_9.1.2-1.debian.tar.gz
 7297507883deedccb34693ee6b94b956 575954 libdevel optional libpq-dev_9.1.2-1_amd64.deb
 941d67f1706297a1aa1bbeb71ce734d9 494802 libs optional libpq5_9.1.2-1_amd64.deb
 f1f718f9cac937443d4a912588ea0183 433410 libs optional libecpg6_9.1.2-1_amd64.deb
 d92f1898874a43a403707bcb27ebbeb3 613090 libdevel optional libecpg-dev_9.1.2-1_amd64.deb
 702acb9744c45a40c4ed96400aaade23 357362 libs optional libecpg-compat3_9.1.2-1_amd64.deb
 085287f7251cfada602b13b7e22b4fc1 379856 libs optional libpgtypes3_9.1.2-1_amd64.deb
 6d454afd4efa6f533c9afd4271f0864c 6070210 database optional postgresql-9.1_9.1.2-1_amd64.deb
 bf5fbaffae92472c4d8c232b5a61713e 6298402 debug extra postgresql-9.1-dbg_9.1.2-1_amd64.deb
 afb0a7aa873735904eb8512ca0755e13 1848670 database optional postgresql-client-9.1_9.1.2-1_amd64.deb
 f8f8d427b91f8399329f258f85e21ace 1025428 libdevel optional postgresql-server-dev-9.1_9.1.2-1_amd64.deb
 363e7ffaa35bf92d2c29c2853a72aee7 2865012 doc optional postgresql-doc-9.1_9.1.2-1_all.deb
 eb00d0f7ec445e66aed1193974cd2406 806568 database optional postgresql-contrib-9.1_9.1.2-1_amd64.deb
 458083aa6d62b5d98380d9f2b6bc9713 399648 database optional postgresql-plperl-9.1_9.1.2-1_amd64.deb
 86430eb0320429d33eded3d94ceda5fc 409742 database optional postgresql-plpython-9.1_9.1.2-1_amd64.deb
 4c68c021e3e97208a17309b0e1613ccf 386940 database optional postgresql-plpython3-9.1_9.1.2-1_amd64.deb
 a0fed5cf9ff6cade8001642b8a1c9ab7 374160 database optional postgresql-pltcl-9.1_9.1.2-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJO2Ng0AAoJEPmIJawmtHuf1isP/05akyLfgfdCSKw7/yASulOn
NwVvnyz0cPgHdM0tWgrKW9+cPRASSe9fhvWbjkYaDcu5IPMcTl96ZVypM+of1a2b
ktfPcQltR1GRBWe+n0rqkJUWJTvqDt9eqcXIhB/Xj6dQ91pQoJykTyzPkX8bnChL
7HJIuz6xpYFBYh1GU9NXG4HpR8hdN5fsM/EoiwVZ5VrLuP3qU87LyQeQkbOniIPJ
es7ykXcviimIvBSJjjaXenRNDJ+zN6kMX+Z57wzF61vSoMW8x58qyFGKHzKQGCGe
b/Y01FKR0cgLaOIGgS6bPP0D+GW2GftuMRTHfdxTQ5bEuAts1miJRLqlbhrtjbhJ
o0TSpx4sjGcVXpZoj+z11xiut6Hqqhw+XXYd+lF9W2hR61nVGkfnVx5VUnBq5syJ
DFDFyXQjvXU6kQQJ6CHl/k1vjkozTFNHtddK9ds3SZT0ZTGZS7WE6qEgG5JDgZiL
QNFqUP4GtnpTtYz/QhnpILwsz6GApOBoJB4r1iieAIIx3CTU3j1G4RZBqDd8r2iQ
CN9kvJfFku/+CQCdbee+0f8pxyN+7hkEURxwADnAlOE9Mf2WrM6hFTcTnNqLJwzJ
dDpN0zR2YyFfP9Kq/MnWYkfBims9zQajJNIYyb/jRCBwwF//jfQfN/dVfCozuWiP
kcBuW461WH3GWAp440PQ
=mIJQ
-----END PGP SIGNATURE-----


Accepted:
libecpg-compat3_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/libecpg-compat3_9.1.2-1_amd64.deb
libecpg-dev_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/libecpg-dev_9.1.2-1_amd64.deb
libecpg6_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/libecpg6_9.1.2-1_amd64.deb
libpgtypes3_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/libpgtypes3_9.1.2-1_amd64.deb
libpq-dev_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/libpq-dev_9.1.2-1_amd64.deb
libpq5_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/libpq5_9.1.2-1_amd64.deb
postgresql-9.1-dbg_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-9.1-dbg_9.1.2-1_amd64.deb
postgresql-9.1_9.1.2-1.debian.tar.gz
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2-1.debian.tar.gz
postgresql-9.1_9.1.2-1.dsc
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2-1.dsc
postgresql-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2-1_amd64.deb
postgresql-9.1_9.1.2.orig.tar.bz2
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2.orig.tar.bz2
postgresql-client-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-client-9.1_9.1.2-1_amd64.deb
postgresql-contrib-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-contrib-9.1_9.1.2-1_amd64.deb
postgresql-doc-9.1_9.1.2-1_all.deb
  to main/p/postgresql-9.1/postgresql-doc-9.1_9.1.2-1_all.deb
postgresql-plperl-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-plperl-9.1_9.1.2-1_amd64.deb
postgresql-plpython-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-plpython-9.1_9.1.2-1_amd64.deb
postgresql-plpython3-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-plpython3-9.1_9.1.2-1_amd64.deb
postgresql-pltcl-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-pltcl-9.1_9.1.2-1_amd64.deb
postgresql-server-dev-9.1_9.1.2-1_amd64.deb
  to main/p/postgresql-9.1/postgresql-server-dev-9.1_9.1.2-1_amd64.deb


Reply to: