Skip to content

Wöchentlicher PostgreSQL Newsletter - 05. Juli 2009


Der Originalartikel befindet sich unter:
http://www.postgresql.org/community/weeklynews/pwn20090705


== Wöchentlicher PostgreSQL Newsletter - 05. Juli 2009 ==

PostgreSQL 8.4.0 erschienen.
http://www.postgresql.org/about/press/features84.html

Round-Robin Reviewer schnellstmöglich benötigt! Maile robertmhaas AT
gmail DOT com um teilzunehmen.
http://wiki.postgresql.org/wiki/Reviewing_a_Patch

== PostgreSQL Produkt Neuigkeiten ==

PostgreSQL + Replication 8.3-1.8 Beta 6, vorher bekannt als
Mammoth Replicator, ist erschienen.
https://projects.commandprompt.com/public/replicator

pgAdmin 1.10, ein GUI Management Werkzeug für PostgreSQL, ist
erschienen.
http://www.pgadmin.org/

pgloader 2.3.2, ein Bulk Loader für PostgreSQL, ist erschienen.
http://pgfoundry.org/projects/pgloader/

pgSphere 1.1.0, ein Modul um mit kugelförmigen Koordinaten zu arbeiten,
ist erschienen.
http://pgfoundry.org/projects/pgsphere/

== PostgreSQL Jobs im Juli ==

http://archives.postgresql.org/pgsql-jobs/2009-07/threads.php

== PostgreSQL Lokal ==

pgDay San Jose findet am Sonntag, dem 19. Juli 2009, unmittelbar
vor der OSCON statt. Anmelden unter:
http://postgresql.meetup.com/1/calendar/10626647

Das OpenSQL Camp findet am 22. und 23. August in St. Augustin,
Deutschland, in der Nähe von Bonn und Köln, statt. Einsendeschluß für
den CfP ist der 19. Juli 2009. Vorträge einreichen!
http://opensqlcamp.org/Events/2009/Call_for_Participation

Die Deutsche PostgreSQL Usergruppe wird einen Dev-Room auf der
FrOSCon am Sonntag, dem 23. August 2009 haben. Der Call for Papers
ist eröffnet:
http://andreas.scherbaum.la/blog/archives/573-Call-for-Papers-fuer-den-PostgreSQL-Devroom-auf-der-FrOSCon-2009.html

Der CfP für PyCon Argentina ist bis zum 29. Juni 2009 23:59 ART
geöffnet. Die Konferenz selbst findet in Buenos Aires am 4. und 5.
September 2009 statt.
http://ar.pycon.org/2009/rfp/

Andreas (ads) Scherbaum wird einen Kurs "PostgreSQL im
Unternehmenseinsatz" an der Volkshochschule Magdeburg, Deutschland,
vom 7. bis zum 11. Septemper 2009 geben. Details unter:
http://andreas.scherbaum.la/blog/archives/574-PostgreSQL-als-Bildungsurlaub.html

Es findet eine Konferenz in Athens, Georgia, USA am 19. September
2009 statt. Der CfP ist eröffnet.
http://www.postgresqlconference.org/2009/pgday/athens

Es findet eine Konferenz in Seattle, Washington, USA am 16.-18.
Oktober 2009 statt. Der CfP ist eröffnet:
http://www.postgresqlconference.org/2009/west

PGCon Brasilien wird am 23.-24. Oktober 2009 auf dem Unicamp in
Campinas, Sao Paulo, stattfinden. Der CfP ist eröffnet!
http://pgcon.postgresql.org.br/2009/chamadas.en.php

PGDay.EU 2009 wird an der Telecom ParisTech Universität in Paris,
Frankreich, am 6. und 7. Nivember 2009 stattfinden. Der CfP ist
eröffnet. Vorträge einreichen!
http://www.pgday.eu/

Die 10. jährliche JPUG Konferenz hat den Aufruf für Vorträge gestartet.
Die Konferenz findet am 20-21. November 2009 in Tokio, Japan, statt.
http://archives.postgresql.org/pgsql-announce/2009-05/msg00018.php

== PostgreSQL in den News ==

Planet PostgreSQL: http://planet.postgresql.org/

Dieser wöchentliche PostgreSQL Newsletter wurde erstellt von David
Fetter, Josh Berkus, und Devrim GUNDUZ.

Sende Neuigkeiten und Ankündigungen bis Sonntag, 15 Uhr Pazifischer
Zeit. Bitte sende englische Beiträge an david@fetter.org, deutsche an
pwn@pgug.de, italienische an pwn@itpug.org.


== Angewandte Patches ==

Tom Lane committed:

- In pgsql/src/include/Makefile, add missed src/include/foreign
  subdirectory to the set installed into INSTALLDIR/include/server/.
  Itagaki Takahiro

- Stamp HEAD as 8.5devel.

- Remove useless References column for pg_listener catalog
  description.  Per Shigehiro Honda.

- In pgsql/src/bin/pg_dump/pg_dump.c, fix up pg_dump's
  --binary-upgrade option so that it behaves properly with inherited
  columns and check constraints.  Per my recent trouble report.

- Fix handling of changed-Param signaling for CteScan plan nodes.  We
  were using the "cteParam" as a proxy for the possibility that the
  underlying CTE plan depends on outer-level variables or Params, but
  that doesn't work very well because it sometimes causes calling
  subqueries to be treated as SubPlans when they could be InitPlans.
  This is inefficient and also causes the outright failure exhibited
  in bug #4902.  Instead, leave the cteParam out of it and copy the
  underlying CTE plan's extParams directly.  Per bug #4902 from Marko
  (johto) Tiikkaja.

- In pgsql/src/backend/parser/gram.y, per SQL spec (in particular, the
  grammar in SQL:2008 7.13) we should allow parentheses around the
  <query expression body> that follows a WITH clause, eg with cte(foo)
  as ( values(0) ) ((select foo from cte)); This seems to be just an
  oversight/thinko in gram.y.  Noted while experimenting with bug
  #4902.

Peter Eisentraut committed:

- Regression test for XML mapping functionality.  I wrote this one
  while chasing down some bugs in the closing days of 8.4.  It could
  be useful in the long run.  This area of the code had no test
  coverage at all before.

- Upgrade to Autoconf 2.63.  This upgrades the configure
  infrastructure to the latest Autoconf version.  Some notable news
  are: the workaround for the broken fseeko() test is gone, checking
  for unknown options is now provided by Autoconf itself, and fixes
  for Mac OS X.

- In pgsql/src/bin/psql/describe.c, have \d show child tables that
  inherit from the specified parent.  As per discussion, \d shows only
  the number of child tables, because that could be hundreds, when
  used for partitioning.  \d+ shows the actual list.  Damien Clochard

- Add log_line_prefix placeholder %e to contain the current SQL state.
  Guillaume Smet

== Abgelehnte Patches (bis jetzt) ==

No one was disappointed this week :-)

== Eingesandte Patches ==

Lars Kanis sent in a patch to extend user mappings in pg_ident.conf.

Robert Haas sent in another revision of his generated header file
handling patch.

Jeremy Kerr sent in three revisions of a patch to avoid manual
shift-and-test logic in AllocSetFreeIndex.

Robert Haas sent in a patch to autogenerate headers and bki.

KaiGai Kohei sent in another revision of his SE-PostgreSQL patches.

Hans-Juergen Schoenig sent in a patch to transform a tsvector to table
format.

Petr (PJMODOS) Jelinek sent in another revision of his GRANT ON ALL IN
SCHEMA patch.

Fujii Masao sent in a patch to provide support for multiplexing the
SIGUSR1 signal.

Fujii Masao sent in a patch to provide support for non-blocking
communication between a frontend and a backend.

Zoltan Boszormenyi sent in two revisions of a patch to add a "string"
pseudo-type to ECPG.

Gregory Stark sent in a WIP patch to add a Merge Append node, part of
querying partitioned tables more efficiently.

Jeff Davis sent in a WIP patch to allow generalized UNIQUE constraints
such as "doesn't overlap."

Dimitri Fontaine sent in a patch to allow people to run
process_local_preload_libraries from within a transaction.

Trackbacks

No Trackbacks

Comments

Display comments as Linear | Threaded

No comments

Add Comment

Enclosing asterisks marks text as bold (*word*), underscore are made via _word_.
E-Mail addresses will not be displayed and will only be used for E-Mail notifications.
To leave a comment you must approve it via e-mail, which will be sent to your address after submission.
Form options