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 25/10/2007 - 02:03

Nouvelles hebdomadaires de Postgres - 22 octobre 2007

  • Attendez-vous à une prochaine bêta 2 de la 8.3 et grand merci à tous les testeurs :)
  • La PostgreSQL Fall Conference fut un grand succès. Quelques souvenirs...
    http://db.endpoint.com/pgcon07/

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 par l'équipe PostgreSQLFr.

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

Correctifs appliqués

Neil Conway a commité :

  • Minor fixes for the release notes.

Magnus Hagander a commité :

  • Re-allow UTF8 encodings on win32. Since UTF8 is converted to UTF16 before being used, all (valid) locales will work for this.
  • Hiroshi Saito's patch which updates URLs to a couple of external projects in pgsql/doc/src/sgml/external-projects.sgml.
  • In pgsql/doc/src/sgml/external-projects.sgml, fix the URL properly per Robert Treat.
  • In pgsql/contrib/pgbench/pgbench.c, increase FD_SETSIZE on Win32 to allow for more than 54 clients. Per Greg Stark & Dave Page

Peter Eisentraut a commité :

  • In pgsql/src/bin/initdb/initdb.c, remove quotes around locale names in some places for consistency.

Bruce Momjian a commité :

  • Add mention of Slony for in-place upgrades to pgsql/doc/src/sgml/backup.sgml.
  • Mention that Slony switch is only seconds of downtime.
  • In pgsql/doc/src/sgml/backup.sgml, add doc clarifications for warm standby.
  • In pgsql/doc/src/sgml/backup.sgml, mention Slony as just an example.
  • Re-add FAQ item, 'Why do I get "relation with OID ##### does not exist" errors when accessing temporary tables in PL/PgSQL functions?'
  • First pass over release documentation. I trimmed down some of the entries and removed a few.
  • Small changes to release note descriptions.
  • Move a few items into migration from the main changes section. Indent 8.3 consistently.
  • More indenting cleanup, tag additions.
  • More release wording adjustments.
  • Consistently indent release notes for prior releases.
  • More indenting cleanup for release notes.
  • Update German FAQ. Ian Barwick
  • In pgsql/doc/src/sgml/release.sgml, more release note wording improvements.
  • In pgsql/doc/src/sgml/release.sgml, fix release tag spelling typo.
  • More release note word-smithing in pgsql/doc/src/sgml/release.sgml
  • Update Japanese FAQ. Jun Kuwamura

Tom Lane a commité :

  • Include NOLOGIN roles in the 'flat' password file. In the original coding this was seen as useless, but the problem with not including them is that the error message will often be something about authentication failure, rather than the more helpful one about 'role is not permitted to log in'. Per discussion.
  • Back-patch some plpython patches previously made only in HEAD: changes of 3-Apr and 4-Apr to declare interface functions properly and eliminate casts, thereby fixing potential problems on 64-bit machines; and changes of 13-Jul to volatile-qualify some variables to suppress compiler warnings. Per discussion, we're only worrying about Python 2.5 in PG 8.2 and up, so no need to patch further back.
  • Add sample text search dictionary templates and parsers, to replace the hard-to-maintain textual examples currently in the SGML docs. From Sergey Karpov.
  • In pgsql/doc/src/sgml/textsearch.sgml, remove obsolete examples of add-on parsers and dictionary templates; these are more easily and usefully maintained as contrib modules. Various other wordsmithing, markup improvement, etc.
  • Fix pg_wchar_table[] to match revised ordering of the encoding ID enum. Add some comments so hopefully the next poor sod doesn't fall into the same trap. (Wrong comments are worse than none at all...)
  • Teach pgxs.mk and Install.pm how to install files from a contrib module into SHAREDIR/tsearch_data. Use this instead of ad-hoc coding in dict_xsyn/Makefile. Should fix current ContribCheck failures on MSVC.
  • Tweak toast-related logic in pgsql/src/backend/access/heap/heapam.c so that the toaster is only invoked when relkind = RELKIND_RELATION. This syncs these tests with the Asserts in tuptoaster.c, and ensures that we won't ever try to, for example, compress a sequence's tuple. Problem found by Greg Stark while stress-testing with much-smaller-than-normal page sizes.
  • In pgsql/src/bin/psql/describe.c, use 'token' not 'lexeme' to describe the output of a parser.
  • Another round of editorialization on the text search documentation. Notably, standardize on using "token" for the strings output by a parser, while "lexeme" is reserved for the normalized strings produced by a dictionary.
  • In pgsql/src/port/chklocale.c, add missing entry for PG_WIN1250 encoding, per gripe from Pavel Stehule. Also enable translation of PG_WIN874, which certainly seems to have an obvious translation now, though maybe it did not at the time this table's ancestor was created.
  • ts_rewrite() does not return a set, only one row; fix mislabeling in pg_proc.h. Catversion bumped.
  • Found another small glitch in tsearch API: the two versions of ts_lexize() are really redundant, since we invented a regdictionary alias type. We can have just one function, declared as taking regdictionary, and it will handle both behaviors. Noted while working on documentation.
  • In pgsql/doc/src/sgml/config.sgml, add a note pointing out that you can't log to syslog without tweaking the syslog configuration file (at least not on most known Unixen). I dunno why we hadn't had that info in the docs all along ...
  • In pgsql/src/backend/utils/adt/tsginidx.c, adjust error message to agree with documentation. The tsearch documentation uniformly calls these things weights, not classes.
  • Editorial overhaul for text search documentation. Organize the info more clearly, improve a lot of unclear descriptions, add some missing material. We still need a migration guide though.
  • Fix shared tsvector/tsquery input code so that we don't say "syntax error in tsvector" when we are really parsing a tsquery. Report the bogus input, too. Make styles of some related error messages more consistent.
  • In pgsql/src/backend/regex/regc_lex.c, add a useless return statement to suppress a warning seen with some versions of gcc (I'm seeing it with Apple's gcc 4.0.1). I think the reason we did not see this before was that the assert() macros in the regex code were all no-ops till recently.
  • In pgsql/doc/src/sgml/textsearch.sgml, create a quick-and-dirty list of known migration issues for pre-8.3 users of tsearch. This isn't meant to be permanent documentation, but to call out the areas that need either fixing or real documentation.
  • In pgsql/src/backend/optimizer/prep/prepunion.c, remove an Assert that's been obsoleted by recent changes in the parsetree representation of DECLARE CURSOR. Report and fix by Heikki.
  • In pgsql/contrib/pgstattuple/pgstattuple.c, be careful to get share lock on each page before computing its free space. ITAGAKI Takahiro

Correctifs rejetés (à ce jour)

  • Pas de déception cette semaine :-)

Correctifs en attente

  • Brendan Jurd sent in another revision of his quote_null patch.
  • Neil Conway sent in a patch to avoid a needless copy in nodeMaterial in src/backend/executor/nodeMaterial.c.
  • Marko Kreen sent in two versions of new documentation for the txid feature.
  • ITAGAKI Takahiro sent in a patch for testing query modes on pgbench per discussion
    http://archives.postgresql.org/pgsql-hackers/2007-10/msg00755.php
  • Volkan YAZICI sent in a patch which implements configurable penalty costs for the Levenshtein distance metric in the fuzzystrmatch contrib module.
  • Hiroshi Saito sent in a patch to adjust test_fsync.c
  • Greg Sabino Mullane sent in a patch which improves psql's tab completion for schemas and tables.
  • Tom Raney sent in another revision of his hash index build patch.
  • Albert Cervera i Areny sent in a patch to include contrib docs in the docbook SGML.

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