== WöchentlicherPostgreSQL Newsletter - 07.März2010

== WöchentlicherPostgreSQL Newsletter - 07.März2010

am 10.03.2010 23:25:19 von adsmail

Der Originalartikel befindet sich unter:

http://www.postgresql.org/community/weeklynews/pwn20100307



== Wöchentlicher PostgreSQL Newsletter - 07. März 2010 ==

Updates mit Bugfixes für PostgreSQL 7.4 bis 8.4 werden bald erscheinen.
Fertigmachen zum Upgrade!

Die San Francisco PostgreSQL Uergruppe wird ein Testfest am Samstag dem
3. April von 11 Uhr bis 18 Uhr veranstalten. Es wird Live Videos geben.
Hilf mit, dies zu einem weltweiten Event zu machen!
http://wiki.postgresql.org/wiki/SFPUG_Beta_Test_Day

== PostgreSQL Produkt Neuigkeiten ==

MicroOLAP Database Designer 1.2.10 für PostgreSQL ist erschienen.
http://microolap.com/products/database/postgresql-designer/

Der PGCon 2010 Vortragsplan ist jetzt verfügbar.
http://www.pgcon.org/2010/schedule/

PostgreSQLfr hat einen Stand auf der SolutionsLinux 2010 in Paris,
Frankreich vom 16. bis 18. März 2010. Helfer kontaktieren bitte
Stephane Schildknecht unter sas AT postgresql DOT fr, oder die
normale PostgreSQLfr Adresse unter bureau AT postgresql DOT fr.
Mehr Informationen über die Konferenz unter:
http://www.solutionslinux.fr

== PostgreSQL 9.0 Feature der Woche ==

Die EXPLAIN Ausgabe kann als XML, JSON und YAML formatiert werden, was
das Parsen durch Programme sehr viel einfacher macht. Die traditionelle
Textformatierung ist weiterhin das Defaultformat.

== PostgreSQL Lokal ==

Die BWPUG wird sich in Falls Church, VA, USA am 10 März, 2010
um 18:30 Uhr treffen.
http://www.xzilla.net/blog/2010/Feb/BWPUG-March-10th,-Falls- Church-take-two=
...html

Die Deutsche PostgreSQL User Gruppe hat einen Stand auf den Chemnitzer
Linuxtagen 2010 am 13. und 14. März 2010 in Chemnitz, Deutschland.
Andreas (ads) Scherbaum hält einen Vortrag über PostgreSQL 9.0 und
einen Workshop zum Thema "PostgreSQL tunen".
http://andreas.scherbaum.la/blog/archives/652-PostgreSQL-sta nd-at-Chemnitz-=
Linux-Days-2010.html
http://chemnitzer.linux-tage.de/2010/vortraege/plan.html

JDCon East wird vom 25. bis 28. März 2010 in Philadelphia, PA, USA
stattfinden.
http://www.postgresqlconference.org/2010/east

Linuxfest Nordwest 2010 findet in Bellingham, Washington, USA am
24. und 25. April statt. Vortragsreihen, Stände und Sponsoring
sind verfügbar.
http://linuxfestnorthwest.org/

Andreas (ads) Scherbaum hält einen Kurs "PostgreSQL im
Unternehmenseinsatz" an der VHS Magdeburg, Deutschland, vom 03. bis 07.
Mai 2010. Details unter:
http://andreas.scherbaum.la/blog/archives/650-PostgreSQL-Sch ulung-als-Bildu=
ngsurlaub-03.-07.05.2010-in-Magdeburg.html

PgCon 2010 findet vom 20.-21. Mai 2010 in Ottawa statt mit Tutorials
vorher am 18. und 19.
http://www.pgcon.org/2010/registration.php

Der CfP für OSBridge ist eröffnet! OSBridge findet vom 1. bis 4.
Juni 2010 in Portland, Oregon statt.
http://opensourcebridge.org/events/2010/proposals/

OSCON wird in Portland, Oregon vom 19. bis 23. Juli 2010 stattfinden.
http://www.oscon.com/oscon2010

== PostgreSQL in den News ==

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

Dieser wöchentliche PostgreSQL Newsletter wurde erstellt von David
Fetter.

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:

- Back-patch today's memory management fixups in contrib/xml2. Prior
to 8.3, these changes are not critical for compatibility with core
Postgres, since core had no libxml2 calls then. However there is
still a risk if contrib/xml2 is used along with libxml2
functionality in Perl or other loadable modules. So back-patch to
all versions. Also back-patch addition of regression tests. I'm
not sure how many of the cases are interesting without the
interaction with core xml code, but a silly regression test is still
better than none at all.

- Remove xmlCleanupParser calls from contrib/xml2. These are
unnecessary and probably dangerous. I don't see any immediate risk
situations in the core XML support or contrib/xml2 itself, but there
could be issues with external uses of libxml2, and in any case it's
an accident waiting to happen.

- In pgsql/src/port/copydir.c, buildfarm still unhappy, so I'll bet
it's EACCES not EPERM.

- Fix contrib/xml2 so regression test still works when it's built
without libxslt. This involves modifying the module to have a
stable ABI, that is, the xslt_process() function still exists even
without libxslt. It throws a runtime error if called, but doesn't
prevent executing the CREATE FUNCTION call. This is a good thing
anyway to simplify cross-version upgrades.

- In pgsql/src/pl/plpgsql/src/gram.y, cause plpgsql to throw an error
if "INTO rowtype_var" is followed by a comma. Per bug #5352, this
helps to provide a useful error message if the user tries to do
something presently unsupported, namely use a rowtype variable as a
member of a multiple-item INTO list.

- In pgsql/src/pl/plpgsql/src/gram.y, instead of trying (and failing)
to allow <