L'appel à conférenciers pour le Postgres Open a été lancé. Les candidatures sont attendues jusqu'au 1er juillet 2013 : http://postgresopen.org/2013/speaker

PostgreSQL Local

PostgreSQL dans les média

PostgreSQL Weekly News / les nouvelles hebdomadaires vous sont offertes cette semaine par David Fetter. Traduction par l'équipe PostgreSQLFr sous licence CC BY-NC-SA.

Proposez vos articles ou annonces avant dimanche 15:00 (heure du Pacifique). Merci de les envoyer en anglais à david (a) fetter.org, en allemand à pwn (a) pgug.de, en italien à pwn (a) itpug.org et en espagnol à pwn (a) arpug.com.ar.

(lien vers l'article original)

Correctifs appliqués

Stephen Frost a poussé :

Bruce Momjian a poussé :

Robert Haas a poussé :

Peter Eisentraut a poussé :

Tom Lane a poussé :

  • Fix unportable usage of isspace(). Must cast char argument to unsigned to avoid doing the wrong thing with high-bit-set characters. Oversight in commit 30b5ede7157e34e77c7914b8ecfd55aa8da6edc3. http://git.postgresql.org/pg/commitdiff/a149d8bd56edc2f06643118ed8aac8bce6ebad6d
  • Allow type_func_name_keywords in some places where they weren't before. This change makes type_func_name_keywords less reserved than they were before, by allowing them for role names, language names, EXPLAIN and COPY options, and SET values for GUCs; which are all places where few if any actual keywords could appear instead, so no new ambiguities are introduced. The main driver for this change is to allow "COPY ... (FORMAT BINARY)" to work without quoting the word "binary". That is an inconsistency that has been complained of repeatedly over the years (at least by Pavel Golub, Kurt Lidl, and Simon Riggs); but we hadn't thought of any non-ugly solution until now. Back-patch to 9.0 where the COPY (FORMAT BINARY) syntax was introduced. http://git.postgresql.org/pg/commitdiff/2c92edad48796119c83d7dbe6c33425d1924626d

Correctifs rejetés (à ce jour)

  • No one was disappointed this week

Correctifs en attente

  • Thom Brown sent in a patch to correct a flock of typos.
  • Amit Kapila sent in another revision of a patch to allow postgresql.conf values to be changed via SQL.
  • Szymon Guz sent in a patch to fix conversion for Decimal arguments in plpython functions.
  • Robert Haas sent in a patch to preserve forensic information when we freeze.
  • Bruce Momjian sent in a patch to change the -u parameter for username to the more customary (and consistent with other utilities) -U.
  • Cedric Villemain sent in a flock of patches intended to un-break "make install" of certain extensions.
  • Joe Conway sent in three more revisions of a patch to fix cases where dumping extensions fails.
  • Heikki Linnakangas sent in another revision of a patch to scale xlog inserts.
  • Andres Freund sent in a patch to ensure that all_visible WAL records operate on an intialized page.
  • Jeff Davis sent in another revision of a patch to eliminate PD_ALL_VISIBLE.
  • Andres Freund sent in a WIP patch to add support for multiple kinds of external toast datums.
  • Dean Rasheed sent in a patch to make array_remove() do the right thing with a 0-D array.
  • Fabien COELHO sent in another revision of a patch to add a --progress option to pgbench.
  • Fabien COELHO sent in another revision of a patch to add a --throttle option to pgbench.
  • Fujii Masao sent in another revision of a patch to add pg_isready.