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 PG

PostgreSQL Weekly News | Nouvelles neuves de PG

Par Jean-Christophe Arnu le 30/07/2007 - 10:21

Nouvelles hebdomadaires de PostgreSQL - 29 juillet 2007

"L'armée de schtroumpfs" de PostgreSQL était sortie en force pour l'OSCON 2007, et beaucoup de personnes sont venues pour poser des questions spécifiques ce qui contraste avec les années précédentes où les questions habituelles étaient de l'ordre "Et pourquoi pas MySQL?". Un des grands moments fut lorsqu'un vigile est arrivé au stand en disant en substance, "ne prétez pas attention à mon badge. J'ai installé Postgres sur ma machine et je voudrais savoir comment je pourrais mieux l'utiliser."

Les nouveautés des produits dérivés

Offre d'emploi autour de PostgreSQL pour juillet

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

Activités locales autour de PostgreSQL

Comme il en a été disctué lors de la première réunion après pgDay au Prato sur ce que va devenir le European PostgreSQL User Group, une mailing list a été crée à l'adresse suivante : pgsql-eu-general@postgresql.org>

PostgreSQL dans les média

PostgreSQL Weekly News a été rédigé cette semaine par David Fetter

La traduction française est assurée par l'équipe PostgreSQLFr.

Envoyez vos articles et annonces avant dimanche 15:00 (heure du pacifique) en anglais Ă  david@fetter.org et en allemand Ă  pwn@pgug.de.

Correctifs appliqués

Peter Eisentraut a committé:

  • In pgsql/doc/src/sgml/datatype.sgml, update standards conformance information about the bigint type. Found by Michael Glaesemann.

Michael Meskes a committé:

  • Synced ECPG parser.

Neil Conway a committé:

  • In pgsql/src/backend/executor/execUtils.c, slightly refactor ExecOpenScanRelation(): we can use ExecRelationIsTargetRelation() to check if the relation is a target rel, rather than scanning through the result relation array ourselves.
  • Implement RETURN QUERY for PL/PgSQL. This provides some convenient syntax sugar for PL/PgSQL set-returning functions that want to return the result of evaluating a query; it should also be more efficient than repeated RETURN NEXT statements. Based on an earlier patch from Pavel Stehule.

Tom Lane a committé:

  • Remove FileUnlink(), which wasn't being used anywhere and interacted poorly with the recent patch to log temp file sizes at removal time. Doesn't seem worth fixing since it's unused. In passing, make a few elog messages conform to the message style guide.
  • Arrange to put TOAST tables belonging to temporary tables into special schemas named pg_toast_temp_nnn, alongside the pg_temp_nnn schemas used for the temp tables themselves. This allows low-level code such as the relcache to recognize that these tables are indeed temporary, which enables various optimizations such as not WAL-logging changes and using local rather than shared buffers for access. Aside from obvious performance benefits, this provides a solution to bug #3483, in which other backends unexpectedly held open file references to temporary tables. The scheme preserves the property that TOAST tables are not in any schema that's normally in the search path, so they don't conflict with user table names. initdb forced because of changes in system view definitions.
  • Suppress warning when compiling with -DPROFILE_PID_DIR: sys/stat.h is supposed to be included when using mkdir().
  • Adjust horology test to avoid join-plan-dependent result ordering in a few queries. Should fix buildfarm failures arising from new, more aggressive autovac settings.
  • In pgsql/src/backend/optimizer/util/predtest.c, fix predicate-proving logic to cope with binary-compatibility cases when checking whether an IS NULL/IS NOT NULL clause is implied or refuted by a strict function. Per example from Dawid Kuroczko. Backpatch to 8.2 since this is arguably a performance bug.
  • Create a new dedicated Postgres process, "wal writer", which exists to write and fsync WAL at convenient intervals. For the moment it just tries to offload this work from backends, but soon it will be responsible for guaranteeing a maximum delay before asynchronously-committed transactions will be flushed to disk. This is a portion of Simon Riggs' async-commit patch, committed to CVS separately because a background WAL writer seems like it might be a good idea independently of the async-commit feature. I rebased walwriter.c on bgwriter.c because it seemed like a more appropriate way of handling signals; while the startup/shutdown logic in postmaster.c is more like autovac because we want walwriter to quit before we start the shutdown checkpoint.
  • Just noticed that libpq thinks the maximum command tag length is 40, whereas in the backend it's been 64 for some time. Hasn't mattered because no actual tags exceed 40 bytes, but for consistency they should be alike.

Alvaro Herrera a committé:

  • Set a default autovacuum vacuum_cost_delay value of 20ms, to avoid excessive I/O utilization, per discussion. While at it, lower the autovacuum vacuum and analyze threshold values to 50 tuples. It is a bit higher (i.e. more conservative) than what I originally proposed but much better than the old values for small tables.
  • Reword paragraph about the autovacuum_max_workers setting. Patch from Jim Nasby.

Magnus Hagander a committé:

  • Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with third party includes (like tcl) that define DLLIMPORT.
  • Hiroshi Saito's fix to pgsql/src/interfaces/libpq/win32.mak, the standalone win32 makefile (MSVC6) for SSPI and GSSAPI.
  • In pgsql/src/tools/msvc/Project.pm, disable warning 4090 = different const qualifiers on msvc since it warns about things that aren't wrong.
  • In pgsql/src/pl/plperl/GNUmakefile, silence compiler warning on MingW.
  • In pgsql/src/backend/libpq/pqcomm.c, silence compiler warning on MingW.
  • Make it possible, and default, for MingW to build with SSPI support by dynamically loading the function that's missing from the MingW headers and library.
  • The proper guaranteed buffer size for errors is INITIAL_EXPBUFFER_SIZE, not PQERRORMSG_LENGTH. Backport only - the proper fix in HEAD is to use PQExpBuffers everywhere.
  • Use PQExpBuffer for error message in fe-auth.c. In passing, change functions that passedin both PGconn and parts of it to just pass in the PGconn.
  • Fix typo in pgsql/src/interfaces/libpq/fe-auth.c.
  • SSPI authentication on Windows.

Correctifs rejetés (à ce jour)

Pas de déception cette semaine :-)

Correctifs en attente

  • Andrew Dunstan sent in a patch to enable logging of start time/cookie for all backend processes.
  • Gregory Stark sent in a patch which documents and removes some dead code in pgsql/src/backend/access/heap/tuptoaster.c which resulted from the varvarlena patch.
  • Erwin Brandstetter suggested a patch which changes the GRANT docs to reflect current realities.
  • Gregory Stark sent in a patch which fixes some misalignments from a pg_indent run.
  • Simon Riggs sent in a patch which simplifies the stats_ parameters.
  • Zdenek Kotala sent in a patch to pgcrypto which fixes two problems on systems, like the default Solaris 10 installation, without strong encryption. Per discussion at http://archives.postgresql.org/pgsql-hackers/2007-07/msg00762.php

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