PostgreSQL
La base de données la plus sophistiquée au monde.

Ouverture de session

Navigation

Contactez-nous

Administration du site :
"equipe chez postgresqlfr point org"

Contact presse :
"fr chez postgresql point org"

Contact association :
"bureau chez postgresqlfr point org"

Questions PostgreSQL :
 IRC :
  serveur irc.freenode.net
  canal #postgresqlfr

Recherche

Accéder aux archives

« Octobre 2008  
Lun Mar Mer Jeu Ven Sam Dim
  2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31  

Syndication

Flux XML

Sondage

Quelle est la version de PostgreSQL la plus répandue sur vos serveurs ?
8.3
10%
8.2
42%
8.1
40%
8.0
2%
7.4
6%
7.3 ou antérieure
0%
Nombre de votes: 48

Nouvelles neuves de Postgres

PostgreSQL Weekly News | Nouvelles neuves de Postgres

Par N Bougain le 13/10/2007 - 02:10

Nouvelles hebdomadaires de Postgres - 7 octobre 2007

Postgres 8.3 bêta 1 disponible :
http://www.postgresql.org/about/news.872

Les nouveautés des produits dérivés

Offres d'emplois autour de Postgres en octobre

http://archives.postgresql.org/pgsql-jobs/2007-10/threads.php

Postgres Local

Postgres dans les média

Postgres Weekly News / les nouvelles hebdomadaires vous sont offertes cette semaine par David Fetter. La traduction française est effectuée religieusement par l'équipe PostgreSQLFr.

(Pour plus d'informations sur le récent changement de nom PostgreSQL / Postgres, vous pouvez consulter les derniers ajouts de la FAQ ou survoler la mailing-list pgsql-advocacy)

Proposez vos articles ou annonces avant dimanche 15:00 (heure du Pacifique). Envoyez-les en anglais à david (a) fetter.org ou en allemand à pwn (a) pgug.de.

Correctifs appliqués

Jan Wieck a commité :

  • Added the Skytools extended transaction ID module to contrib as discussed on CORE previously. This module offers transaction ID's containing the original XID and the transaction epoch as a bigint value to the user level. It also provides a special txid_snapshot data type that contains an entire transactions visibility snapshot information, which is useful to determine if a particular txid was visible to a transaction or not. The module has been tested by porting Slony-I from using its original xxid data type.

Alvaro Herrera a commité :

  • A few improvements to analyze and vacuum sections in documentation: add "see also" entries for autovacuum in analyze and vacuum reference pages, and enhance usage of cross-references in the maintenance page.
  • In pgsql/doc/src/sgml/func.sgml, change π to plain "pi" in index entry, to avoid double escaping issues.
  • In pgsql/doc/src/sgml/Makefile, clean up the doc makefile for draft HTML generation. It no longer works to do "make DRAFT=Y html"; you need to use "make draft" (which was also supported previously).
  • In pgsql/doc/src/sgml/Makefile, remove stylesheet.css file on "make clean", created only on VPATH builds.
  • In pgsql/doc/src/sgml/maintenance.sgml, fix missing parenthesis, per Guillaume Lelarge.
  • Fix SGML markup, from Guillaume Lelarge.

Marc Fournier a commité :

  • tag it 8.3beta1 ... the beta cycle begins

Neil Conway a commité :

  • Two fixes for the release notes from Guillaume Smet. In passing, make a minor markup improvement.
  • First pass at SGML-ifying the 8.3 release notes. Plenty of improvements left to made, but this is a start.
  • Various minor improvements to the 8.3 release notes.
  • Fix a compiler warning on Win32. Hannes Eder.

Michael Meskes a commité :

  • In ecpg, replaced tabs with spaces.
  • In ecpg, removed newline at end of exports files.
  • In ecpg, added def-files to all: target so they are build everytime.
  • Argh, missing dll in filename in pgsql/src/interfaces/ecpg/compatlib and pgsql/src/interfaces/ecpg/pgtypeslib.
  • In pgsql/src/interfaces/ecpg/compatlib/Makefile, add snprintf.c for some systems.
  • In pgsql/src/interfaces/ecpg/compatlib/exports.txt, stripped two symbols that are needed.
  • In pgsql/src/interfaces/ecpg/compatlib/Makefile, also build snprintf from pgport if needed.
  • Remove exports.list into clean target.
  • Also created export list for pgytpeslib and compatlib. Set pgtypes library version to 3.0. Set compat library version to 3.0.
  • Cleaned up ecpglib and renamed functions that do not need to be exported. Created export list for ecpglib.
  • Hopefully fixed some stuff that causes Windows builds to fail on ecpg.
  • In ecpg testing code, made new test also work without threading enabled.
  • Removed pgsql/src/interfaces/ecpg/test/expected/thread-descriptor.stdout.diff. No idea where this file came from.
  • In ecpg, ITAGAKI Takahiro added thread-safe descriptor handling.

Tom Lane a commité :

  • In pgsql/src/backend/regex: regc_color.c, make dumpcolors() have tolerable performance when using 32-bit chr, as we do (and upstream Tcl doesn't). The loop limit might be subject to negotiation if anyone ever tries to do regex debugging in Far Eastern languages, but for now 1000 seems plenty. CHR_MAX was right out :-(
  • Adjust some regex debugging printouts to not give wrong-format-width warnings on a 64-bit machine. Noted while chasing a recent regex bug report.
  • Adjust regcustom.h so that all those assert() calls in the regex package are converted to Postgres Assert() macros, instead of using <assert.h> as formerly. No difference in production builds, but --enable-cassert debug builds will get better coverage for regex testing.
  • Fix plperl and pltcl to include the name of the current function when passing on errors from the language interpreter. (plpython seems fairly OK about this already.) Per gripe from Robert Kleemann.
  • In pgsql/doc/src/sgml/release.sgml, remove some cross-references that don't seem to work in HISTORY generation ... we should figure this out later ...
  • Fix distprep and maintainer-clean targets so that ecpg's .def files are made and removed at the correct times.
  • Add .cvsignore files to suppress CVS gripes about ecpg .def files.
  • Some desultory markup improvements in the new release notes.
  • Results from buildfarm show that ecpglib was depending on pg_strcasecmp, which evidently it got as an unofficial export from pgtypeslib.
  • Keep the planner from failing on "WHERE false AND something IN (SELECT ...)". eval_const_expressions simplifies this to just "WHERE false", but we have already done pull_up_IN_clauses so the IN join will be done, or at least planned, anyway. The trouble case comes when the sub-SELECT is itself a join and we decide to implement the IN by unique-ifying the sub-SELECT outputs: with no remaining reference to the output Vars in WHERE, we won't have propagated the Vars up to the upper join point, leading to "variable not found in subplan target lists" error. Fix by adding an extra scan of in_info_list and forcing all Vars mentioned therein to be propagated up to the IN join point. Per bug report from Miroslav Sulc.
  • Stamp 8.3beta1, except in configure.in/configure.
  • Update timezone data files to release 2007h of the zic database. Might as well have the latest when we wrap 8.3beta1.
  • In ecpg, DLL_DEFFILE should be defined when PORTNAME is win32, not when it isn't, per the example of libpq/Makefile.
  • In pgsql/src/backend/postmaster/bgwriter.c, change Assert() to a plain test and elog, just to see if that works around the icc bug exhibited by buildfarm member dugong.
  • Second pass at 8.3 release notes: put items in a bit more logical order where possible, add overview and incompatibilities lists, minor cleanups. The SGML-ification still leaves much to be desired.
  • Teach chklocale.c how to extract encoding info from Windows locale names. ITAGAKI Takahiro
  • Some editorial improvements for recently-added ALTER SEQUENCE/VIEW documentation. Heikki and Tom
  • In pgsql/src/interfaces/ecpg/ecpglib/descriptor.c, suppress compiler warning in non-threaded build.
  • Tweak recently-added tests to suppress scary-looking warnings on 64-bit machines about casts between pointers and integers of different sizes. While they're harmless, we shouldn't expect users to have to go through and figure that out for themselves.
  • Minor improvements to hack for old OpenSSL libraries: avoid unused variable warning on Windows, improve comment.
  • In gsql/src/interfaces/ecpg/compatlib/Makefile, fix command for fetching snprintf.c.
  • First cut at 8.3 release notes. SGML markup is nonexistent, and the 'overview' and 'incompatibilities' summary lists remain to be written. But I think all the raw info is there (indeed maybe too verbose).
  • Cope with ERR_set_mark() and ERR_pop_to_mark() not existing in older OpenSSL libraries --- just don't call them if they're not there. This might possibly lead to misleading error messages, but we'll just have to live with that.
  • In pgsql/doc/src/sgml/catalogs.sgml, add catalogs.sgml documentation for text search catalogs.
  • In pgsql/doc/src/sgml/installation.sgml, add note warning against use of pre-8.4 multithreaded Tcl.
  • Avoid assuming that struct varattrib_pointer doesn't get padded by the compiler --- at least on ARM, it does. I suspect that the varvarlena patch has been creating larger-than-intended toast pointers all along on ARM, but it wasn't exposed until the latest tweak added some Asserts that calculated the expected size in a different way. We could probably have fixed this by adding __attribute__packed as is done for ItemPointerData, but struct varattrib_pointer isn't really all that useful anyway, so it seems cleanest to just get rid of it and have only struct varattrib_1b_e. Per results from buildfarm member quagga.

Magnus Hagander a commité :

  • In pgsql/src/interfaces/libpq/fe-secure.c, attempt to open certificate file "manually" using fopen before trying BIO functions. Helps problem with older versions of OpenSSL that lacks error stack functions and would show an incorrect error message for file-not-found-or-not-openable. The problem may still exist for other errors, but file open error is by far the most common one.
  • Build two more .DEF files for ecpg instead of using default ones.
  • More detailed error msg (with stack trace) if a file copy fails in pgsql/src/tools/msvc/Install.pm.
  • Use snprintf from libpgport in ecpg compatlib. Required since we restricted exports from ecpglib.
  • Fix commandlines for final two ECPG regression tests in pgsql/src/tools/msvc/ecpg_regression.proj.
  • Fix typo in pgsql/src/interfaces/ecpg/ecpglib/exports.txt.
  • In pgsql/src/tools/msvc, build DEF file for libecpg instead of generating a default one.
  • Make ECPG regression tests run with -c only for array_of_struct.pgc on MSVC. Fix strange nonstandard version of __stdcall specifyer in thread tests on win32.
  • Fix typo in pgsql/src/tools/msvc/vcregress.pl.
  • Default to thread safety on, and support more CPU options. Also make sure that a CPU option is actually chosen. Hiroshi Saito
  • Use BIO functions to avoid passing FILE * pointers to OpenSSL functions. This fixes potential crashes on old versions of OpenSSL and the requirement on "Applink" in new versions when building with MSVC and using different runtimes. Dave Page with fixes from me.
  • In pgsql/src/interfaces/libpq/win32.mak, build with /GS on 64-bit to work with modern Platform SDK. Hiroshi Saito
  • Enable __FUNCTION__ on MSVC builds. Hannes Eder

D'Arcy J.M. Cain a commité :

  • Add some examples to pgsql/contrib/chkpass/README.chkpass.
  • Fix a minor typo in pgsql/contrib/chkpass/README.chkpass.

Bruce Momjian a commité :

  • In pgsql/src/tools/pgcvslog, add comment about cvs branch numbers.
  • Add pgcvslog '-d' capability to allow stripping of commit messages that have back branch activity. This will be useful for creating release notes for major releases.
  • In pgsql/src/tools/pgcvslog, update pgcvslog text to simply "<branch>"
  • Fixup for new pgcvslog feature.
  • In pgsql/src/tools/pgcvslog, have pgcvslog mark back-branch commits with "<back-patch>".

Correctifs rejetés (à ce jour)

  • Pas de déception cette semaine :-)

Correctifs en attente

  • Richard Rowell sent in two revisions of a patch to inline stable SQL set returning UDFs.
  • Brendan Jurd sent in a patch to get rid of some redundant code by creating a widely useful set of functions to convert between text and C string in the backend.
  • Euler Taveira de Oliveira sent in an updated FAQ in Brazilian Portuguese.

© PostgreSQLFr, tous droits rĂ©servĂ©s.
Site déclaré à la CNIL sous le numéro 1074678, conformément à la Loi en vigueur.