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

Accepted postgresql-8.3 8.3.3-1~bpo40+1 (source all i386 powerpc)



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu, 12 Jun 2008 09:31:21 +0200
Source: postgresql-8.3
Binary: libpgtypes3 libpq5 libpq-dev libecpg-compat3 libecpg6 postgresql-contrib-8.3 postgresql-doc postgresql-8.3 postgresql-pltcl-8.3 postgresql-server-dev-8.3 postgresql postgresql-contrib postgresql-client postgresql-plpython-8.3 postgresql-client-8.3 postgresql-doc-8.3 postgresql-plperl-8.3 libecpg-dev
Architecture: all i386 powerpc source
Version: 8.3.3-1~bpo40+1
Distribution: etch-backports
Urgency: low
Maintainer: Martin Pitt <mpitt@debian.org>
Changed-By: Gerfried Fuchs <rhonda@debian.at>
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
Changes: 
 postgresql-8.3 (8.3.3-1~bpo40+1) etch-backports; urgency=low
 .
   * Rebuild for etch-backports.
   * Lowered tcl-dev dependency back to 8.4 (also in debian/rules).
 .
 postgresql-8.3 (8.3.3-1) unstable; urgency=low
 .
   * New upstream bugfix release (note that 8.3.2 was never officially released
     due to the discovery of another major bug):
     - Make pg_get_ruledef() parenthesize negative constants.
       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.
       This oversight could lead to problems if the aggregate was later
       involved in a "DROP OWNED" or "REASSIGN OWNED" operation.
     - Fix incorrect archive truncation point calculation for the %r macro
       in recovery_command parameters. This could lead to data loss if a
       warm-standby script relied on %r to decide when to throw away WAL
       segment files.
     - Fix "ALTER TABLE ADD COLUMN ... PRIMARY KEY" so that the new column
       is correctly checked to see if it's been initialized to all
       non-nulls.
     - Fix "REASSIGN OWNED" so that it works on procedural languages too.
     - Fix problems with "SELECT FOR UPDATE/SHARE" occurring as a subquery
       in a query with a non-"SELECT" top-level operation.
     - Fix possible "CREATE TABLE" failure when inheriting the "same"
       constraint from multiple parent relations that inherited that
       constraint from a common ancestor.
     - Fix pg_get_ruledef() to show the alias, if any, attached to the
       target table of an "UPDATE" or "DELETE".
     - Restore the pre-8.3 behavior that an out-of-range block number in a
       TID being used in a TidScan plan results in silently not matching
       any rows. 8.3.0 and 8.3.1 threw an error instead.
     - Fix GIN bug that could result in a too many LWLocks taken failure.
     - Fix broken GiST comparison function for tsquery.
     - Fix tsvector_update_trigger() and ts_stat() to accept domains over
       the types they expect to work with.
     - Fix failure to support enum data types as foreign keys.
     - Avoid possible crash when decompressing corrupted data.
     - Fix race conditions between delayed unlinks and "DROP DATABASE".
       In the worst case this could result in deleting a newly created
       table in a new database that happened to get the same OID as the
       recently-dropped one; but of course that is an extremely
       low-probability scenario.
     - Repair two places where SIGTERM exit of a backend could leave
       corrupted state in shared memory.
     - Fix possible crash due to incorrect plan generated for an x IN
       (SELECT y FROM ...) clause when "x" and "y" have different data
       types; and make sure the behavior is semantically correct when the
       conversion from "y"'s type to "x"'s type is lossy.
     - Fix oversight that prevented the planner from substituting known
       Param values as if they were constants.
     - Fix planner failure when an indexable MIN or MAX aggregate is used
       with DISTINCT or ORDER BY.
     - Fix planner to ensure it never uses a "physical tlist" for a plan
       node that is feeding a Sort node.
     - Avoid unnecessary copying of query strings.
     - Make TransactionIdIsCurrentTransactionId() use binary search
       instead of linear search when checking child-transaction XIDs.
       This fixes some cases in which 8.3.0 was significantly slower than
       earlier releases.
     - Fix conversions between ISO-8859-5 and other encodings to handle
       Cyrillic "Yo" characters (e and E with two dots).
     - Fix several datatype input functions, notably array_in(), that were
       allowing unused bytes in their results to contain uninitialized,
       unpredictable values. This could lead to failures in which two
       apparently identical literal values were not seen as equal, resulting in
       the parser complaining about unmatched ORDER BY and DISTINCT
       expressions.
     - Fix a corner case in regular-expression substring matching
       (substring(string from pattern)).
       The problem occurs when there is a match to the pattern overall but
       the user has specified a parenthesized subexpression and that
       subexpression hasn't got a match. An example is substring('foo'
       from 'foo(bar)?'). This should return NULL, since (bar) isn't
       matched, but it was mistakenly returning the whole-pattern match
       instead (ie, foo).
     - Prevent cancellation of an auto-vacuum that was launched to prevent
       XID wraparound.
     - Improve "ANALYZE"'s handling of in-doubt tuples (those inserted or
       deleted by a not-yet-committed transaction) so that the counts it
       reports to the stats collector are more likely to be correct.
     - Fix initdb to reject a relative path for its --xlogdir (-X) option.
     - Make psql print tab characters as an appropriate number of spaces,
       rather than \x09 as was done in 8.3.0 and 8.3.1.
     - Add ECPGget_PGconn() function to ecpglib. Dropped
       00upstream-ecpg-get-connection.patch, which backported this fix.
     - Fix incorrect result from ecpg's PGTYPEStimestamp_sub() function.
     - Fix handling of continuation line markers in ecpg.
     - Fix possible crashes in "contrib/cube" functions.
     - Fix core dump in "contrib/xml2"'s xpath_table() function when the
       input query returns a NULL value.
   * Build against tcl 8.5.
   * debian/control: Fix bad wrapping in build dependencies.
Files: 
 03c29a013855339dd5c85baf9b401dab 422254 libdevel optional libecpg-dev_8.3.3-1~bpo40+1_i386.deb
 1b528f8ee90085124497748ed5308462 775064 libdevel optional postgresql-server-dev-8.3_8.3.3-1~bpo40+1_i386.deb
 1f8574aefb64e1c18544b56f6ff0b192 230692 misc optional postgresql-plpython-8.3_8.3.3-1~bpo40+1_i386.deb
 615bd38ad705d154654da6355ee3b419 1252 misc optional postgresql-8.3_8.3.3-1~bpo40+1.dsc
 267ad9c30911de6a54208f2296a4a841 13686509 misc optional postgresql-8.3_8.3.3.orig.tar.gz
 2e57821b3f2cfcb06f42dfeb32faa5ea 218544 libs optional libecpg-compat3_8.3.3-1~bpo40+1_i386.deb
 3addcbd5414a1a48fb86a1d95066a872 239948 libs optional libpgtypes3_8.3.3-1~bpo40+1_i386.deb
 3b0490dac25b7106226bb89eda65d24a 211268 doc optional postgresql-doc_8.3.3-1~bpo40+1_all.deb
 40e7ee947528abfdd8ea7a19ac23e9c1 5559022 misc optional postgresql-8.3_8.3.3-1~bpo40+1_powerpc.deb
 41454316f53f57be8d4594bb8fb12aa1 211328 misc optional postgresql-contrib_8.3.3-1~bpo40+1_all.deb
 47eb78bf3e03d0d2db916f3c26ba9d2e 240262 misc optional postgresql-plperl-8.3_8.3.3-1~bpo40+1_powerpc.deb
 4e0eb470eb8eb14501f02c11a15a03af 229428 misc optional postgresql-pltcl-8.3_8.3.3-1~bpo40+1_i386.deb
 61537a9856092c46daa27558d535350c 1660434 misc optional postgresql-client-8.3_8.3.3-1~bpo40+1_powerpc.deb
 66f317a653dfe8652744148cf629e616 1628830 misc optional postgresql-client-8.3_8.3.3-1~bpo40+1_i386.deb
 677fbbceb1f05fd715bf9cf7a9667cb7 240398 libs optional libecpg6_8.3.3-1~bpo40+1_powerpc.deb
 6d732b287dc7d445cb5d891a9ccf0150 340688 libs optional libpq5_8.3.3-1~bpo40+1_i386.deb
 6f2e8603a1fc5ceae2feb7d06048cf9a 531938 misc optional postgresql-contrib-8.3_8.3.3-1~bpo40+1_i386.deb
 777ec2fd4f060387e1364a6cf003e7c9 57939 misc optional postgresql-8.3_8.3.3-1~bpo40+1.diff.gz
 780674f08787401447294f96b95413f2 410566 libdevel optional libpq-dev_8.3.3-1~bpo40+1_powerpc.deb
 8d04ebedd8118042a32aa7282c81cdcc 5133198 misc optional postgresql-8.3_8.3.3-1~bpo40+1_i386.deb
 9f751f29f27cf4e22303d3d81de68bf5 1914406 doc optional postgresql-doc-8.3_8.3.3-1~bpo40+1_all.deb
 a39ee39f68198aa6708177232224a043 232754 misc optional postgresql-plpython-8.3_8.3.3-1~bpo40+1_powerpc.deb
 ac096f83cbe5e8e2ad8cebd64c012488 421264 libdevel optional libecpg-dev_8.3.3-1~bpo40+1_powerpc.deb
 baa9872998628b3f8edef2d7edcebebe 241904 libs optional libpgtypes3_8.3.3-1~bpo40+1_powerpc.deb
 c44dd8005ac33161581e16fde87cdf90 408344 libdevel optional libpq-dev_8.3.3-1~bpo40+1_i386.deb
 c6cf8a39bcd6806aca4f5a88814013d4 341040 libs optional libpq5_8.3.3-1~bpo40+1_powerpc.deb
 c8abdaa2c8ad54b76feaaf84df7b855f 239656 libs optional libecpg6_8.3.3-1~bpo40+1_i386.deb
 ceabcaa80eeaf2e4414656dd4a887c51 218712 libs optional libecpg-compat3_8.3.3-1~bpo40+1_powerpc.deb
 d8a70e8908697337d60eb8f3197856e9 239394 misc optional postgresql-plperl-8.3_8.3.3-1~bpo40+1_i386.deb
 e5c099b0f17780946837175658617576 211430 misc optional postgresql-client_8.3.3-1~bpo40+1_all.deb
 eabefd8fe6ac3e1b5560d6b3534ec6cc 775604 libdevel optional postgresql-server-dev-8.3_8.3.3-1~bpo40+1_powerpc.deb
 f40f78c1d3a8f0efc847220063de2b62 211454 misc optional postgresql_8.3.3-1~bpo40+1_all.deb
 fc91421e9f0c681af8ee3b09cdb73e87 231338 misc optional postgresql-pltcl-8.3_8.3.3-1~bpo40+1_powerpc.deb
 ff046a033d2083dcd21e10577d4b8115 587956 misc optional postgresql-contrib-8.3_8.3.3-1~bpo40+1_powerpc.deb

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

iD8DBQFIbz6fELuA/Ba9d8YRAlnSAJ9A5GajPIsZ4V59zuJFdZ3bCfsk9QCdE3j6
0PkRhAannY+/dc6OqZinjRY=
=vAND
-----END PGP SIGNATURE-----


Accepted:
libecpg-compat3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/libecpg-compat3_8.3.3-1~bpo40+1_i386.deb
libecpg-compat3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/libecpg-compat3_8.3.3-1~bpo40+1_powerpc.deb
libecpg-dev_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/libecpg-dev_8.3.3-1~bpo40+1_i386.deb
libecpg-dev_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/libecpg-dev_8.3.3-1~bpo40+1_powerpc.deb
libecpg6_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/libecpg6_8.3.3-1~bpo40+1_i386.deb
libecpg6_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/libecpg6_8.3.3-1~bpo40+1_powerpc.deb
libpgtypes3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/libpgtypes3_8.3.3-1~bpo40+1_i386.deb
libpgtypes3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/libpgtypes3_8.3.3-1~bpo40+1_powerpc.deb
libpq-dev_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/libpq-dev_8.3.3-1~bpo40+1_i386.deb
libpq-dev_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/libpq-dev_8.3.3-1~bpo40+1_powerpc.deb
libpq5_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/libpq5_8.3.3-1~bpo40+1_i386.deb
libpq5_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/libpq5_8.3.3-1~bpo40+1_powerpc.deb
postgresql-8.3_8.3.3-1~bpo40+1.diff.gz
  to pool/main/p/postgresql-8.3/postgresql-8.3_8.3.3-1~bpo40+1.diff.gz
postgresql-8.3_8.3.3-1~bpo40+1.dsc
  to pool/main/p/postgresql-8.3/postgresql-8.3_8.3.3-1~bpo40+1.dsc
postgresql-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql-8.3_8.3.3.orig.tar.gz
  to pool/main/p/postgresql-8.3/postgresql-8.3_8.3.3.orig.tar.gz
postgresql-client-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-client-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-client-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-client-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql-client_8.3.3-1~bpo40+1_all.deb
  to pool/main/p/postgresql-8.3/postgresql-client_8.3.3-1~bpo40+1_all.deb
postgresql-contrib-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-contrib-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-contrib-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-contrib-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql-contrib_8.3.3-1~bpo40+1_all.deb
  to pool/main/p/postgresql-8.3/postgresql-contrib_8.3.3-1~bpo40+1_all.deb
postgresql-doc-8.3_8.3.3-1~bpo40+1_all.deb
  to pool/main/p/postgresql-8.3/postgresql-doc-8.3_8.3.3-1~bpo40+1_all.deb
postgresql-doc_8.3.3-1~bpo40+1_all.deb
  to pool/main/p/postgresql-8.3/postgresql-doc_8.3.3-1~bpo40+1_all.deb
postgresql-plperl-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-plperl-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-plperl-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-plperl-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql-plpython-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-plpython-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-plpython-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-plpython-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql-pltcl-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-pltcl-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-pltcl-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-pltcl-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql-server-dev-8.3_8.3.3-1~bpo40+1_i386.deb
  to pool/main/p/postgresql-8.3/postgresql-server-dev-8.3_8.3.3-1~bpo40+1_i386.deb
postgresql-server-dev-8.3_8.3.3-1~bpo40+1_powerpc.deb
  to pool/main/p/postgresql-8.3/postgresql-server-dev-8.3_8.3.3-1~bpo40+1_powerpc.deb
postgresql_8.3.3-1~bpo40+1_all.deb
  to pool/main/p/postgresql-8.3/postgresql_8.3.3-1~bpo40+1_all.deb


Reply to: