[COMMITTERS] pgsql: Fix buggy usage of vsnprintf in PL/Python by removing it

2007-11-22 Thread Alvaro Herrera
Log Message: --- Fix buggy usage of vsnprintf in PL/Python by removing it altogether, instead relying on stringinfo.c. This fixes a problem reported by Marko Kreen, but I didn't use his patch, per subsequent discussion. Tags: REL7_4_STABLE Modified Files: -- pgsql/sr

[COMMITTERS] pgsql: Fix buggy usage of vsnprintf in PL/Python by removing it

2007-11-22 Thread Alvaro Herrera
Log Message: --- Fix buggy usage of vsnprintf in PL/Python by removing it altogether, instead relying on stringinfo.c. This fixes a problem reported by Marko Kreen, but I didn't use his patch, per subsequent discussion. Tags: REL8_0_STABLE Modified Files: -- pgsql/sr

[COMMITTERS] pgsql: Fix buggy usage of vsnprintf in PL/Python by removing it

2007-11-22 Thread Alvaro Herrera
Log Message: --- Fix buggy usage of vsnprintf in PL/Python by removing it altogether, instead relying on stringinfo.c. This fixes a problem reported by Marko Kreen, but I didn't use his patch, per subsequent discussion. Tags: REL8_1_STABLE Modified Files: -- pgsql/sr

[COMMITTERS] pgsql: Fix buggy usage of vsnprintf in PL/Python by removing it

2007-11-22 Thread Alvaro Herrera
Log Message: --- Fix buggy usage of vsnprintf in PL/Python by removing it altogether, instead relying on stringinfo.c. This fixes a problem reported by Marko Kreen, but I didn't use his patch, per subsequent discussion. Tags: REL8_2_STABLE Modified Files: -- pgsql/sr

[COMMITTERS] pgsql: Fix buggy usage of vsnprintf in PL/Python by removing it

2007-11-22 Thread Alvaro Herrera
Log Message: --- Fix buggy usage of vsnprintf in PL/Python by removing it altogether, instead relying on stringinfo.c. This fixes a problem reported by Marko Kreen, but I didn't use his patch, per subsequent discussion. Modified Files: -- pgsql/src/pl/plpython: plp

[COMMITTERS] pgsql: Fix "Page Layout" table.

2007-11-22 Thread Tatsuo Ishii
Log Message: --- Fix "Page Layout" table. The second row should be ItemIdData, not ItemPointerData. Tags: REL7_3_STABLE Modified Files: -- pgsql/doc/src/sgml: page.sgml (r1.12 -> r1.12.2.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgm

[COMMITTERS] pgsql: Fix "Page Layout" table.

2007-11-22 Thread Tatsuo Ishii
Log Message: --- Fix "Page Layout" table. The second row should be ItemIdData, not ItemPointerData. Tags: REL7_4_STABLE Modified Files: -- pgsql/doc/src/sgml: page.sgml (r1.15 -> r1.15.2.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgm

[COMMITTERS] pgsql: Fix "Overall Page Layout" table.

2007-11-22 Thread Tatsuo Ishii
Log Message: --- Fix "Overall Page Layout" table. The second row should be ItemIdData, not ItemPointerData. Tags: REL8_0_STABLE Modified Files: -- pgsql/doc/src/sgml: storage.sgml (r1.4 -> r1.4.4.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/do

[COMMITTERS] pgsql: Fix "Overall Page Layout" table.

2007-11-22 Thread Tatsuo Ishii
Log Message: --- Fix "Overall Page Layout" table. The second row should be ItemIdData, not ItemPointerData. Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml: storage.sgml (r1.8 -> r1.8.2.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/do

[COMMITTERS] pgsql: Fix "Overall Page Layout" table.

2007-11-22 Thread Tatsuo Ishii
Log Message: --- Fix "Overall Page Layout" table. The second row should be ItemIdData, not ItemPointerData. Tags: REL8_2_STABLE Modified Files: -- pgsql/doc/src/sgml: storage.sgml (r1.13 -> r1.13.2.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/

[COMMITTERS] pgsql: Fix "Overall Page Layout" table.

2007-11-22 Thread Tatsuo Ishii
Log Message: --- Fix "Overall Page Layout" table. The second row should be ItemIdData, not ItemPointerData. Modified Files: -- pgsql/doc/src/sgml: storage.sgml (r1.20 -> r1.21) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/storage.sgml?r1=1

[COMMITTERS] pginstaller - pginst: New french update.

2007-11-22 Thread User Gleu
Log Message: --- New french update. Modified Files: -- pginst/lang: fr.xml (r1.28 -> r1.29) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/lang/fr.xml.diff?r1=1.28&r2=1.29) ---(end of broadcast)-

[COMMITTERS] python - fe: Correct function reference.

2007-11-22 Thread James William Pye
Log Message: --- Correct function reference. It was accessing the function via the module. [sigh] Modified Files: -- fe/src: python.py (r1.9 -> r1.10) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/fe/src/python.py.diff?r1=1.9&r2=1.10) --

[COMMITTERS] python - lo: Correct Typo.

2007-11-22 Thread James William Pye
Log Message: --- Correct Typo. :( Modified Files: -- lo/postgresql/utility/client: environ.py (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/lo/postgresql/utility/client/environ.py.diff?r1=1.2&r2=1.3) ---(end of

[COMMITTERS] pgsql: Actually ...

2007-11-22 Thread Tom Lane
Log Message: --- Actually ... it's pretty silly that parse_oper.c doesn't set up the opfuncid of an OpExpr initially, considering that it has the information at hand already. We'll still treat opfuncid as a cache rather than a guaranteed-valid value, but this change saves one more syscache

[COMMITTERS] pgsql: Save one syscache lookup when examining volatility or strictness

2007-11-22 Thread Tom Lane
Log Message: --- Save one syscache lookup when examining volatility or strictness of OpExpr and related nodes. We're going to have to set the opfuncid of such nodes eventually (if we haven't already), so we might as well exploit the opportunity to cache the function OID. Buys back some of

[COMMITTERS] pgsql: Add more comments about thousands separator handling.

2007-11-22 Thread Bruce Momjian
Log Message: --- Add more comments about thousands separator handling. Modified Files: -- pgsql/src/backend/utils/adt: formatting.c (r1.135 -> r1.136) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/formatting.c?r1=1.135&r2=1.136)

[COMMITTERS] pgsql: Prevent Perl from introducing a possibly-incompatible definition

2007-11-22 Thread Tom Lane
Log Message: --- Prevent Perl from introducing a possibly-incompatible definition of type "bool" into plperl.c. This has always been a hazard since Perl allows a platform-specific choice to define bool as int rather than char, but evidently this didn't happen on any platform we support ...

[COMMITTERS] pgsql: Prevent Perl from introducing a possibly-incompatible definition

2007-11-22 Thread Tom Lane
Log Message: --- Prevent Perl from introducing a possibly-incompatible definition of type "bool" into plperl.c. This has always been a hazard since Perl allows a platform-specific choice to define bool as int rather than char, but evidently this didn't happen on any platform we support ...

[COMMITTERS] pgsql: Prevent Perl from introducing a possibly-incompatible definition

2007-11-22 Thread Tom Lane
Log Message: --- Prevent Perl from introducing a possibly-incompatible definition of type "bool" into plperl.c. This has always been a hazard since Perl allows a platform-specific choice to define bool as int rather than char, but evidently this didn't happen on any platform we support ...

[COMMITTERS] pgsql: Prevent Perl from introducing a possibly-incompatible definition

2007-11-22 Thread Tom Lane
Log Message: --- Prevent Perl from introducing a possibly-incompatible definition of type "bool" into plperl.c. This has always been a hazard since Perl allows a platform-specific choice to define bool as int rather than char, but evidently this didn't happen on any platform we support ...

[COMMITTERS] python - lo: Align PGSERVICE handling with libpq.

2007-11-22 Thread James William Pye
Log Message: --- Align PGSERVICE handling with libpq. Formerly, if a service went unfound, ConfigParser would raise a NoSectionError. This was done regardless of the file existence or readability, which is inconsistent with libpq's error on access, but not on undefined service. In the fut

[COMMITTERS] pgsql: Add comments about thousands separator logic.

2007-11-22 Thread Bruce Momjian
Log Message: --- Add comments about thousands separator logic. Modified Files: -- pgsql/src/backend/utils/adt: formatting.c (r1.134 -> r1.135) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/formatting.c?r1=1.134&r2=1.135) pgsql/

[COMMITTERS] pgsql: Document that doc builds now build indexes by default, unless

2007-11-22 Thread Bruce Momjian
Log Message: --- Document that doc builds now build indexes by default, unless "draft" is used. Modified Files: -- pgsql/doc/src/sgml: release.sgml (r1.554 -> r1.555) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml?r1=1.554&r2=1.

[COMMITTERS] npgsql - Npgsql2: I applied incorrectly Daniel's patch.

2007-11-22 Thread User Fxjr
Log Message: --- I applied incorrectly Daniel's patch. Now it is ok. Sorry for that :( Modified Files: -- Npgsql2/src/Npgsql: NpgsqlClosedState.cs (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlClosedState.cs.d

[COMMITTERS] npgsql - Npgsql2: Fixed bug when trying to connect to ipv6 hosts.

2007-11-22 Thread User Fxjr
Log Message: --- Fixed bug when trying to connect to ipv6 hosts. Also, added support for connecting to server names which have multiple ip addresses. Thanks Daniel Nauck (dna at mono-project dot de) for patch. Modified Files: -- Npgsql2/src/Npgsql: NpgsqlClosedSt

[COMMITTERS] press - pr: Added RO traslation for release.txt (8.3)

2007-11-22 Thread User Am
Log Message: --- Added RO traslation for release.txt (8.3) Added Files: --- pr/releases/8.3/ro: release.txt (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.3/ro/release.txt?rev=1.1&content-type=text/x-cvsweb-markup)