[ubuntu/intrepid-proposed] postgresql-8.3 8.3.5-0ubuntu8.10 (Accepted)

Martin Pitt martin.pitt at ubuntu.com
Tue Nov 4 20:03:58 GMT 2008


postgresql-8.3 (8.3.5-0ubuntu8.10) intrepid-proposed; urgency=low

  * New upstream bug fix release: (LP: #293758)
    - Fix GiST index corruption due to marking the wrong index entry
      "dead" after a deletion. This would result in index searches failing to
      find rows they should have found.
    - Fix backend crash when the client encoding cannot represent a
      localized error message.
    - Fix possible crash in bytea-to-XML mapping.
    - Fix possible crash when deeply nested functions are invoked from a
      trigger.
    - Improve optimization of "expression" IN ("expression-list") queries.
    - Fix mis-expansion of rule queries when a sub-SELECT appears in a
      function call in FROM, a multi-row VALUES list, or a RETURNING list.
    - Fix Assert failure during rescan of an IS NULL search of a GiST
      index.
    - Fix memory leak during rescan of a hashed aggregation plan.
    - Ensure an error is reported when a newly-defined PL/pgSQL trigger
      function is invoked as a normal function.
    - Force a checkpoint before "CREATE DATABASE" starts to copy files.
      This prevents a possible failure if files had recently been deleted
      in the source database.
    - Prevent possible collision of relfilenode numbers when moving a
      table to another tablespace with "ALTER SET TABLESPACE". The command
      tried to re-use the existing filename, instead of picking one that is
      known unused in the destination directory.
    - Fix incorrect text search headline generation when single query
      item matches first word of text.
    - Fix improper display of fractional seconds in interval values when
      using a non-ISO datestyle.
    - Make ILIKE compare characters case-insensitively even when they're
      escaped.
    - Ensure "DISCARD" is handled properly by statement logging.
    - Fix incorrect logging of last-completed-transaction time during
      PITR recovery.
    - Ensure SPI_getvalue and SPI_getbinval behave correctly when the
      passed tuple and tuple descriptor have different numbers of columns.
      This situation is normal when a table has had columns added or
      removed, but these two functions didn't handle it properly. The
      only likely consequence is an incorrect error indication.
    - Mark SessionReplicationRole as PGDLLIMPORT so it can be used by
      Slony on Windows.
    - Fix small memory leak when using libpq's gsslib parameter.
      The space used by the parameter string was not freed at connection
      close.
    - Ensure libgssapi is linked into libpq if needed.
    - Fix ecpg's parsing of "CREATE ROLE".
    - Fix recent breakage of pg_ctl restart.
  * 03-gettext-domains.patch: Unfuzz for new upstream version.

Date: Tue, 04 Nov 2008 20:32:37 +0100
Changed-By: Martin Pitt <martin.pitt at ubuntu.com>
Maintainer: Martin Pitt <mpitt at debian.org>
https://edge.launchpad.net/ubuntu/intrepid/+source/postgresql-8.3/8.3.5-0ubuntu8.10
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Tue, 04 Nov 2008 20:32:37 +0100
Source: postgresql-8.3
Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 postgresql-8.3 postgresql-client-8.3 postgresql-server-dev-8.3 postgresql-doc-8.3 postgresql-contrib-8.3 postgresql-plperl-8.3 postgresql-plpython-8.3 postgresql-pltcl-8.3 postgresql postgresql-client postgresql-doc postgresql-contrib
Architecture: source
Version: 8.3.5-0ubuntu8.10
Distribution: intrepid-proposed
Urgency: low
Maintainer: Martin Pitt <mpitt at debian.org>
Changed-By: Martin Pitt <martin.pitt at ubuntu.com>
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.3
 libpq-dev  - header files for libpq5 (PostgreSQL library)
 libpq5     - PostgreSQL C client library
 postgresql - object-relational SQL database (supported version)
 postgresql-8.3 - object-relational SQL database, version 8.3 server
 postgresql-client - front-end programs for PostgreSQL (supported version)
 postgresql-client-8.3 - front-end programs for PostgreSQL 8.3
 postgresql-contrib - additional facilities for PostgreSQL (supported version)
 postgresql-contrib-8.3 - additional facilities for PostgreSQL
 postgresql-doc - documentation for the PostgreSQL database management system
 postgresql-doc-8.3 - documentation for the PostgreSQL database management system
 postgresql-plperl-8.3 - PL/Perl procedural language for PostgreSQL 8.3
 postgresql-plpython-8.3 - PL/Python procedural language for PostgreSQL 8.3
 postgresql-pltcl-8.3 - PL/Tcl procedural language for PostgreSQL 8.3
 postgresql-server-dev-8.3 - development files for PostgreSQL 8.3 server-side programming
Launchpad-Bugs-Fixed: 293758
Changes: 
 postgresql-8.3 (8.3.5-0ubuntu8.10) intrepid-proposed; urgency=low
 .
   * New upstream bug fix release: (LP: #293758)
     - Fix GiST index corruption due to marking the wrong index entry
       "dead" after a deletion. This would result in index searches failing to
       find rows they should have found.
     - Fix backend crash when the client encoding cannot represent a
       localized error message.
     - Fix possible crash in bytea-to-XML mapping.
     - Fix possible crash when deeply nested functions are invoked from a
       trigger.
     - Improve optimization of "expression" IN ("expression-list") queries.
     - Fix mis-expansion of rule queries when a sub-SELECT appears in a
       function call in FROM, a multi-row VALUES list, or a RETURNING list.
     - Fix Assert failure during rescan of an IS NULL search of a GiST
       index.
     - Fix memory leak during rescan of a hashed aggregation plan.
     - Ensure an error is reported when a newly-defined PL/pgSQL trigger
       function is invoked as a normal function.
     - Force a checkpoint before "CREATE DATABASE" starts to copy files.
       This prevents a possible failure if files had recently been deleted
       in the source database.
     - Prevent possible collision of relfilenode numbers when moving a
       table to another tablespace with "ALTER SET TABLESPACE". The command
       tried to re-use the existing filename, instead of picking one that is
       known unused in the destination directory.
     - Fix incorrect text search headline generation when single query
       item matches first word of text.
     - Fix improper display of fractional seconds in interval values when
       using a non-ISO datestyle.
     - Make ILIKE compare characters case-insensitively even when they're
       escaped.
     - Ensure "DISCARD" is handled properly by statement logging.
     - Fix incorrect logging of last-completed-transaction time during
       PITR recovery.
     - Ensure SPI_getvalue and SPI_getbinval behave correctly when the
       passed tuple and tuple descriptor have different numbers of columns.
       This situation is normal when a table has had columns added or
       removed, but these two functions didn't handle it properly. The
       only likely consequence is an incorrect error indication.
     - Mark SessionReplicationRole as PGDLLIMPORT so it can be used by
       Slony on Windows.
     - Fix small memory leak when using libpq's gsslib parameter.
       The space used by the parameter string was not freed at connection
       close.
     - Ensure libgssapi is linked into libpq if needed.
     - Fix ecpg's parsing of "CREATE ROLE".
     - Fix recent breakage of pg_ctl restart.
   * 03-gettext-domains.patch: Unfuzz for new upstream version.
Checksums-Sha1: 
 cd8a856e5c52085f0ea61cc3dcc577ad1fc40338 1681 postgresql-8.3_8.3.5-0ubuntu8.10.dsc
 91986ac2383197a74372f7d7e3ac4b33b7d5dda1 13744681 postgresql-8.3_8.3.5.orig.tar.gz
 1868833995daa46d4ae9e3462689d8fa2b67dfaa 61565 postgresql-8.3_8.3.5-0ubuntu8.10.diff.gz
Checksums-Sha256: 
 403e3217d769ce9e5cfb85dd3b377b22fbd6b0a45be0744c6e0eb086e5b69cf8 1681 postgresql-8.3_8.3.5-0ubuntu8.10.dsc
 4b8607125c3d037f2fb1b690886633e3b158c1dab55922edf450601f88a8ed3b 13744681 postgresql-8.3_8.3.5.orig.tar.gz
 63b434bdb992be29655e9392549cbb976d54fe1ca4fe931504567e086052f361 61565 postgresql-8.3_8.3.5-0ubuntu8.10.diff.gz
Files: 
 e8233801ac609bd7b404be83511c377e 1681 misc optional postgresql-8.3_8.3.5-0ubuntu8.10.dsc
 0fcf0d5e63c01ca4782bc79face2db39 13744681 misc optional postgresql-8.3_8.3.5.orig.tar.gz
 c6f311b48f6a6918fce6b4efc34fcd68 61565 misc optional postgresql-8.3_8.3.5-0ubuntu8.10.diff.gz

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

iEYEARECAAYFAkkQqSUACgkQDecnbV4Fd/KK7QCeLvISQUkeA6zcy+VKLGGInKUE
SgAAnjUSyd4T2oOVRkFAfwE2B33oMr1h
=gpRD
-----END PGP SIGNATURE-----


More information about the Intrepid-changes mailing list