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

Accepted postgresql-9.1 9.1.2-1~bpo60+1 (source all amd64)



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

Format: 1.8
Date: Mon, 12 Dec 2011 15:04:50 +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~bpo60+1
Distribution: squeeze-backports
Urgency: low
Maintainer: Martin Pitt <mpitt@debian.org>
Changed-By: Christoph Berg <myon@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: 643645 643646 646079
Changes: 
 postgresql-9.1 (9.1.2-1~bpo60+1) squeeze-backports; urgency=low
 .
   * Rebuild for squeeze-backports.
 .
 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)
 .
 postgresql-9.1 (9.1.1-3) unstable; urgency=low
 .
   * debian/rules: Build with LINUX_OOM_ADJ=0 on Linux, to allow the OOM killer
     to slay the backends when the postmaster gets marked as unkillable.
     (LP: #854590)
 .
 postgresql-9.1 (9.1.1-2) unstable; urgency=low
 .
   [ Peter Eisentraut ]
   * Fix FTBFS twice with dpkg-dev >= 1.16.1, because of leftover file
     src/backend/gettext-files.  Clean that one explicitly. (Closes: #643645)
   * Fix lintian reports: (Closes: #643646)
     - brace-expansion-in-debhelper-config-file
     - maintainer-script-without-set-e
 .
   [ Martin Pitt ]
   * debian/*.install, debian/rules: Compress manpages in debian/tmp instead of
     just two binary packages and forgetting the others.
   * Build a new postgresql-plpython3-9.1 package for Python 3 support. This
     requires some reorganization of debian/rules to do multiple builds.
   * debian/postgresql-9.1.postrm: Clean up /var/log/postgresql/ on purge.
     Spotted by piuparts.
 .
 postgresql-9.1 (9.1.1-1) unstable; urgency=low
 .
   * New upstream bug fix release:
     - Make pg_options_to_table return NULL for an option with no value.
       Previously such cases would result in a server crash.
     - 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 explicit reference to pg_temp schema in "CREATE TEMPORARY
       TABLE". This used to be allowed, but failed in 9.1.0.
Checksums-Sha1: 
 899e9bb4455a167b40fcf3f784492394ca1dff67 2529 postgresql-9.1_9.1.2-1~bpo60+1.dsc
 7d57b96eb1c764ec234c72b70511a5f7e23fb2b0 15424814 postgresql-9.1_9.1.2.orig.tar.bz2
 3d184875390644bb0a16a35949e4201b2ea5c85a 25376 postgresql-9.1_9.1.2-1~bpo60+1.debian.tar.gz
 e72f1e96b642ad787d12066a3a22b4f57982d321 582484 libpq-dev_9.1.2-1~bpo60+1_amd64.deb
 406bac2ebf7c8c9ae9178befafebc166374308a9 493396 libpq5_9.1.2-1~bpo60+1_amd64.deb
 167fbb69bb83f58b4b415cfabe4dcfc2291565e6 433846 libecpg6_9.1.2-1~bpo60+1_amd64.deb
 ad78bf055ecab55146ee6019b0a6911d78c6549c 611978 libecpg-dev_9.1.2-1~bpo60+1_amd64.deb
 48496e36fffae2935d1da4c3ce83e94147514119 358618 libecpg-compat3_9.1.2-1~bpo60+1_amd64.deb
 729dcde6f91f6b425a0512441a2774166be7cabf 382816 libpgtypes3_9.1.2-1~bpo60+1_amd64.deb
 30b1758c3782f82b4150ff071aca108b45e31e91 6092346 postgresql-9.1_9.1.2-1~bpo60+1_amd64.deb
 f5ad6a79cbeee4bcd8afa67bc96fde7a66715c35 8118410 postgresql-9.1-dbg_9.1.2-1~bpo60+1_amd64.deb
 3c93f3aaf2ee89cf86c10b29366d399d0fb96216 1861924 postgresql-client-9.1_9.1.2-1~bpo60+1_amd64.deb
 b5fc704e2307338971957238a3984652b97ff941 1027002 postgresql-server-dev-9.1_9.1.2-1~bpo60+1_amd64.deb
 f987becf65fb129a2e004f911a2c569a77bceb52 2865468 postgresql-doc-9.1_9.1.2-1~bpo60+1_all.deb
 475681180b1afe43c3d2740370a2483ce05285a2 818156 postgresql-contrib-9.1_9.1.2-1~bpo60+1_amd64.deb
 17c5bf06824a15a204a67f03e8ff5e74f9c1d77b 403030 postgresql-plperl-9.1_9.1.2-1~bpo60+1_amd64.deb
 75c645c16ca968cb9c3f749e963bfa4e2334d777 412368 postgresql-plpython-9.1_9.1.2-1~bpo60+1_amd64.deb
 b9950ef4b25ae534a20c824f6ac441066aa8833e 389330 postgresql-plpython3-9.1_9.1.2-1~bpo60+1_amd64.deb
 c0536cc5943b41b2baed43300fe5ec3d88179193 375166 postgresql-pltcl-9.1_9.1.2-1~bpo60+1_amd64.deb
Checksums-Sha256: 
 1beb5fde857e6f57a308efb129594cab8c46736560c4542a8121b41cd0fb25e5 2529 postgresql-9.1_9.1.2-1~bpo60+1.dsc
 8d54ff514f5b2754e6e36b008c43d7bbf7daf541da608767cc5bdedb1de5db30 15424814 postgresql-9.1_9.1.2.orig.tar.bz2
 aa55f32beb66a6216d0250d8b933871b90def2b7d4a45167d0714bf679deb1c2 25376 postgresql-9.1_9.1.2-1~bpo60+1.debian.tar.gz
 306b44a911e5444f234bc836af5ad025e20ec83bf79b2a4b3e583916f6232ad0 582484 libpq-dev_9.1.2-1~bpo60+1_amd64.deb
 e0db986eac2991b7d6b3586ddd73c6fe24f25b93beed0c9c73e6b7ce55fec9c3 493396 libpq5_9.1.2-1~bpo60+1_amd64.deb
 7af93bac30e8d0c38fcf1ac554f785642fdc8f3c83cfa35b494f47ac0e6f2992 433846 libecpg6_9.1.2-1~bpo60+1_amd64.deb
 c5b003b67fbc195aa4be3a60edef45ee999a84b229d5ed82453338eb39440eb9 611978 libecpg-dev_9.1.2-1~bpo60+1_amd64.deb
 1edf0710d0db01e4d4bb3d750d71465545326b5db075ed3cb1be6d79e966a3e5 358618 libecpg-compat3_9.1.2-1~bpo60+1_amd64.deb
 dc8b68913e336a9228d85b9853e8c23ee85298ee6760e8089910839185a82ee7 382816 libpgtypes3_9.1.2-1~bpo60+1_amd64.deb
 429748c7fe3a0ccefb860196419c01e6f13de08ad73942eda1b1122e4d9a3e0c 6092346 postgresql-9.1_9.1.2-1~bpo60+1_amd64.deb
 46a0eb45a462d122313b696aa27c136ababeed930162d54e9dbec7034b5e4acf 8118410 postgresql-9.1-dbg_9.1.2-1~bpo60+1_amd64.deb
 e9a158e0e2d634c4f0d64511adac793fba546b8f7dd6fb4ff5b3e6a7858db501 1861924 postgresql-client-9.1_9.1.2-1~bpo60+1_amd64.deb
 a3bc01f1156f68d71d96b871cda6f72b6cddb2b2d645da2c08c9ba7f194a9366 1027002 postgresql-server-dev-9.1_9.1.2-1~bpo60+1_amd64.deb
 ec7e0b8932849e5b0a24e6b2050c4169e922356f092a13e42039ea0e6c75904c 2865468 postgresql-doc-9.1_9.1.2-1~bpo60+1_all.deb
 8fab680f6d4642a543a16810deec69a8c545dae14ffbe8b33b039d8eb0def628 818156 postgresql-contrib-9.1_9.1.2-1~bpo60+1_amd64.deb
 0af2c212cbd66b11a3974aa2028b012306175ab06409fe3a85f9e318f97ea6c4 403030 postgresql-plperl-9.1_9.1.2-1~bpo60+1_amd64.deb
 5793f8ce201e7c12f0f44a8528b38794be1670d44e65ec02ba3fd2048104cf2c 412368 postgresql-plpython-9.1_9.1.2-1~bpo60+1_amd64.deb
 360553be2f8388056a409d8bfd6600ecf334051f65b1fd676ba08b098bdbd5ea 389330 postgresql-plpython3-9.1_9.1.2-1~bpo60+1_amd64.deb
 73450ebbf02b27cfd554ab2b420bfb8676897655ed65ee4b4605de746f65e53b 375166 postgresql-pltcl-9.1_9.1.2-1~bpo60+1_amd64.deb
Files: 
 3dcc627ac228c9bac80a5652d6c9f81c 2529 database optional postgresql-9.1_9.1.2-1~bpo60+1.dsc
 7dbff52221954c46595313eb7f92c3e0 15424814 database optional postgresql-9.1_9.1.2.orig.tar.bz2
 5d1d8d45acf73eae5e9f2458192a298c 25376 database optional postgresql-9.1_9.1.2-1~bpo60+1.debian.tar.gz
 b6b99d66827a7be52464dbcb83463ff1 582484 libdevel optional libpq-dev_9.1.2-1~bpo60+1_amd64.deb
 a4d772c780ff146c000a7a55e98f8c8f 493396 libs optional libpq5_9.1.2-1~bpo60+1_amd64.deb
 0899542bfdc81b3aa32a69a32e165fc6 433846 libs optional libecpg6_9.1.2-1~bpo60+1_amd64.deb
 e98e1f432142e7200b77f6d1d2f39f2c 611978 libdevel optional libecpg-dev_9.1.2-1~bpo60+1_amd64.deb
 d394a5a52d7a3265fa7a95ff05fe2b91 358618 libs optional libecpg-compat3_9.1.2-1~bpo60+1_amd64.deb
 f095fb972949c137801ad950228e52c4 382816 libs optional libpgtypes3_9.1.2-1~bpo60+1_amd64.deb
 9e8a782d7f4dfff76ac1379b2e524837 6092346 database optional postgresql-9.1_9.1.2-1~bpo60+1_amd64.deb
 777ebe3750df22a34196bf4bf08351d5 8118410 debug extra postgresql-9.1-dbg_9.1.2-1~bpo60+1_amd64.deb
 0c925a906cf5151572fd2a08871f1355 1861924 database optional postgresql-client-9.1_9.1.2-1~bpo60+1_amd64.deb
 737caa4c5e3dfeabc95326b57b72c09b 1027002 libdevel optional postgresql-server-dev-9.1_9.1.2-1~bpo60+1_amd64.deb
 2c9015b42f9fc82b758c9b7d5b739e14 2865468 doc optional postgresql-doc-9.1_9.1.2-1~bpo60+1_all.deb
 4eaf6b2f9b4e1fb738ab693ede4f4cfc 818156 database optional postgresql-contrib-9.1_9.1.2-1~bpo60+1_amd64.deb
 c2e790894d77fe278ab111996c054ab1 403030 database optional postgresql-plperl-9.1_9.1.2-1~bpo60+1_amd64.deb
 a083674bc70ddb231dcbbab9f952bb5a 412368 database optional postgresql-plpython-9.1_9.1.2-1~bpo60+1_amd64.deb
 b2b3e39156522fbbd1fe31d4d3eac3c5 389330 database optional postgresql-plpython3-9.1_9.1.2-1~bpo60+1_amd64.deb
 a7bbe5615a525159017f5f02fb77984e 375166 database optional postgresql-pltcl-9.1_9.1.2-1~bpo60+1_amd64.deb

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

iQIcBAEBCAAGBQJO8izsAAoJEExaa6sS0qeuJzQP/2QZSFvfzUgvFlLzWpYfBzCc
hvC5KrReZfB1Xu6tywTH+OJFsH2cOS/mOtFw0QBtWXWUfM5RyF3gtk5MFIfoUdiW
lH+K8smpe+nEFTKmN2OKE2uKIj86BeSdLaEMOllE63Z0vZvCEQog3pwfXTejlOjv
1E+gw8AeE8Z6NFnFebDnUhTaGcv7wK0n066GwuBRHDsxPWwtzngoXnVzRzk9pkDX
4yPjmonNLYO49Q0dONoFiDM7vUsxI9MsD9FyHCt1hV6pGPvwMDw2npZbed/UcptX
GV4cepG0Nf55Adzzw3nO+YPhBA8xuedOVQo69XuGV03rKOQSh2oRNx0NO3PMjN7k
ywhEiErDzp/iv5d91XmlnnScw617iquMmh3fu7B5LD5GPB+HrJeSpSSQ+i5aOApJ
Aurz4Esc4sTU/P2CHYwaT1FEhqIsUGEnCShF8OwOInPI6Pnd46kZn6HD9aJ8KxnO
BVuCB4bDn40DDZ63kddJZ79c2ZJI8AOn3qNYYJ1rv0tCr9vO9bS+3JOLwVaUXHPH
7ZRhRSqOxoK2PsC+M8/q5rxxuL61K/hjjz3OciSKax4WzDZMs2VmoRGDK0CKDmPD
mqqtdECsGWlLrFdsYtDd0qq5irZDYCd1gZLBlY/GLK0FDzlO2bHiOPW/BTxp59ue
FYx6T9+UqSinNgAfh9SJ
=Ts5R
-----END PGP SIGNATURE-----


Accepted:
libecpg-compat3_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/libecpg-compat3_9.1.2-1~bpo60+1_amd64.deb
libecpg-dev_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/libecpg-dev_9.1.2-1~bpo60+1_amd64.deb
libecpg6_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/libecpg6_9.1.2-1~bpo60+1_amd64.deb
libpgtypes3_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/libpgtypes3_9.1.2-1~bpo60+1_amd64.deb
libpq-dev_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/libpq-dev_9.1.2-1~bpo60+1_amd64.deb
libpq5_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/libpq5_9.1.2-1~bpo60+1_amd64.deb
postgresql-9.1-dbg_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-9.1-dbg_9.1.2-1~bpo60+1_amd64.deb
postgresql-9.1_9.1.2-1~bpo60+1.debian.tar.gz
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2-1~bpo60+1.debian.tar.gz
postgresql-9.1_9.1.2-1~bpo60+1.dsc
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2-1~bpo60+1.dsc
postgresql-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-9.1_9.1.2-1~bpo60+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~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-client-9.1_9.1.2-1~bpo60+1_amd64.deb
postgresql-contrib-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-contrib-9.1_9.1.2-1~bpo60+1_amd64.deb
postgresql-doc-9.1_9.1.2-1~bpo60+1_all.deb
  to main/p/postgresql-9.1/postgresql-doc-9.1_9.1.2-1~bpo60+1_all.deb
postgresql-plperl-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-plperl-9.1_9.1.2-1~bpo60+1_amd64.deb
postgresql-plpython-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-plpython-9.1_9.1.2-1~bpo60+1_amd64.deb
postgresql-plpython3-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-plpython3-9.1_9.1.2-1~bpo60+1_amd64.deb
postgresql-pltcl-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-pltcl-9.1_9.1.2-1~bpo60+1_amd64.deb
postgresql-server-dev-9.1_9.1.2-1~bpo60+1_amd64.deb
  to main/p/postgresql-9.1/postgresql-server-dev-9.1_9.1.2-1~bpo60+1_amd64.deb


Reply to: