[COMMITTERS] textsearch-ja - textsearch_senna: textsearch_senna 9.0.0.

2011-02-01 Thread User Itagaki
Log Message: --- textsearch_senna 9.0.0. Use PGXS in default and add project files for MSVC. Modified Files: -- textsearch_senna: COPYRIGHT.textsearch_senna (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch_senna/COPYRIGHT

[COMMITTERS] snapshot - src: ENH: First effort to remove COMMUNICATION_KEY and

2011-02-01 Thread User Cunha17
Log Message: --- ENH: First effort to remove COMMUNICATION_KEY and BASE_SCHEMA (use _snapshot_catalog) ENH: First efford to support multiple tables with refresh fast ENH: Usage of new EXPLAIN (only 9.0+) to locate multiple tables Modified Files: -- root: Makefile.s

[COMMITTERS] pgsql: Document that CREATE VIEW that uses "*" for the column list will

2011-02-01 Thread Bruce Momjian
Document that CREATE VIEW that uses "*" for the column list will not auto-add columns later added to the base table. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=5a6ba62be5364dbf973fd9b8631fd60acda03440 Modified Files -- doc/sr

[COMMITTERS] pgsql: Properly capitalize hyphenated words in documentation titles.

2011-02-01 Thread Bruce Momjian
Properly capitalize hyphenated words in documentation titles. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=d56d246e70184692408cd6a444e6824ae8491587 Modified Files -- doc/src/sgml/backup.sgml |2 +- doc/src/sgml/bib

[COMMITTERS] pgsql: Clarify documentation to state that "zero_damaged_pages" does no

2011-02-01 Thread Bruce Momjian
Clarify documentation to state that "zero_damaged_pages" does not force data to disk, so the table or index should be recreated before the parameter is turned off again. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=7106f74e2a6feb31c022dd98e

[COMMITTERS] pgsql: Add validator to PL/Python

2011-02-01 Thread Peter Eisentraut
Add validator to PL/Python Jan UrbaƄski, reviewed by Hitoshi Harada Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=15f55cc38a82dfa3d7898a7c30a303b1b3e87dc3 Modified Files -- src/include/catalog/catversion.h |2 +

[COMMITTERS] pgsql: Document that effective cache size does not assume data remains

2011-02-01 Thread Bruce Momjian
Document that effective cache size does not assume data remains in the cache between queries. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=6c6e6f7fd3ffa984a202b910ef3237e26f9d3c2e Modified Files -- doc/src/sgml/config.sgml |

[COMMITTERS] pgsql: Document that Slony can do upgrades easier _because_ it supports

2011-02-01 Thread Bruce Momjian
Document that Slony can do upgrades easier _because_ it supports replication between different Postgres major versions. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=e8cdc238cfa3fda4185fe6a9826dbdf0a107f789 Modified Files -- doc

[COMMITTERS] pgsql: Clarify pg_upgrade install instructions, per suggestion from Rob

2011-02-01 Thread Bruce Momjian
Clarify pg_upgrade install instructions, per suggestion from Robert Haas. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=902aae5ec58f71b8d9f7efb5ed474d0f5439439d Modified Files -- doc/src/sgml/pgupgrade.sgml |4 ++-- 1 files c

[COMMITTERS] pgsql: Add missing period "." in pg_upgrade documentation.

2011-02-01 Thread Bruce Momjian
Add missing period "." in pg_upgrade documentation. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=d2888d1ca36c266900eeea95401269c782074251 Modified Files -- doc/src/sgml/pgupgrade.sgml |2 +- 1 files changed, 1 insertions(+),

[COMMITTERS] pgsql: Add pg_upgrade comment for why we can't use template1 inheritanc

2011-02-01 Thread Bruce Momjian
Add pg_upgrade comment for why we can't use template1 inheritance for the support functions. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=2bb87a61a84ab74b7ba820aac787443a78897bf4 Modified Files -- contrib/pg_upgrade/pg_upgrade.

[COMMITTERS] pgsql: Update release notes.

2011-02-01 Thread Tom Lane
Update release notes. Security: CVE-2010-4015 Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=43054624979de3205fbc432f15defd4b9d5922e9 Modified Files -- doc/src/sgml/release-8.2.sgml | 13 + doc/src/sgml/release-8.3.

[COMMITTERS] pgsql: Prevent buffer overrun while parsing an integer in a "query_int"

2011-02-01 Thread Tom Lane
Prevent buffer overrun while parsing an integer in a "query_int" value. contrib/intarray's gettoken() uses a fixed-size buffer to collect an integer's digits, and did not guard against overrunning the buffer. This is at least a backend crash risk, and in principle might allow arbitrary code execut

[COMMITTERS] pgsql: Prevent buffer overrun while parsing an integer in a "query_int"

2011-02-01 Thread Tom Lane
Prevent buffer overrun while parsing an integer in a "query_int" value. contrib/intarray's gettoken() uses a fixed-size buffer to collect an integer's digits, and did not guard against overrunning the buffer. This is at least a backend crash risk, and in principle might allow arbitrary code execut

[COMMITTERS] pgsql: Prevent buffer overrun while parsing an integer in a "query_int"

2011-02-01 Thread Tom Lane
Prevent buffer overrun while parsing an integer in a "query_int" value. contrib/intarray's gettoken() uses a fixed-size buffer to collect an integer's digits, and did not guard against overrunning the buffer. This is at least a backend crash risk, and in principle might allow arbitrary code execut

[COMMITTERS] pgsql: Prevent buffer overrun while parsing an integer in a "query_int"

2011-02-01 Thread Tom Lane
Prevent buffer overrun while parsing an integer in a "query_int" value. contrib/intarray's gettoken() uses a fixed-size buffer to collect an integer's digits, and did not guard against overrunning the buffer. This is at least a backend crash risk, and in principle might allow arbitrary code execut

[COMMITTERS] pgsql: Prevent buffer overrun while parsing an integer in a "query_int"

2011-02-01 Thread Tom Lane
Prevent buffer overrun while parsing an integer in a "query_int" value. contrib/intarray's gettoken() uses a fixed-size buffer to collect an integer's digits, and did not guard against overrunning the buffer. This is at least a backend crash risk, and in principle might allow arbitrary code execut

[COMMITTERS] pgsql: Set up PLPerl trigger data using C code instead of Perl code.

2011-02-01 Thread Andrew Dunstan
Set up PLPerl trigger data using C code instead of Perl code. This is an efficiency change, and means we now no longer have to run "out $_TD; local $_TD = shift;", which was especially pointless in the case of non-trigger functions where the passed value was always undef anyway. A tiny open issue

[COMMITTERS] pgsql: Undefine setlocale() macro on Win32

2011-02-01 Thread Magnus Hagander
Undefine setlocale() macro on Win32 New versions of libintl redefine setlocale() to a macro which causes problems when the backend and libintl are linked against different versions of the runtime, which is often the case in msvc builds. Hiroshi Inoue, slightly updated comment by me Branch --

[COMMITTERS] pgsql: Undefine setlocale() macro on Win32

2011-02-01 Thread Magnus Hagander
Undefine setlocale() macro on Win32 New versions of libintl redefine setlocale() to a macro which causes problems when the backend and libintl are linked against different versions of the runtime, which is often the case in msvc builds. Hiroshi Inoue, slightly updated comment by me Branch --

[COMMITTERS] pgsql: Undefine setlocale() macro on Win32

2011-02-01 Thread Magnus Hagander
Undefine setlocale() macro on Win32 New versions of libintl redefine setlocale() to a macro which causes problems when the backend and libintl are linked against different versions of the runtime, which is often the case in msvc builds. Hiroshi Inoue, slightly updated comment by me Branch --

[COMMITTERS] pgsql: Undefine setlocale() macro on Win32

2011-02-01 Thread Magnus Hagander
Undefine setlocale() macro on Win32 New versions of libintl redefine setlocale() to a macro which causes problems when the backend and libintl are linked against different versions of the runtime, which is often the case in msvc builds. Hiroshi Inoue, slightly updated comment by me Branch --

[COMMITTERS] pgsql: Create new errcode for recovery conflict caused by db drop on ma

2011-02-01 Thread Simon Riggs
Create new errcode for recovery conflict caused by db drop on master. Previously reported as ERRCODE_ADMIN_SHUTDOWN, this case is now reported as ERRCODE_DATABASE_DROPPED. No message text change. Unlikely to happen on most servers, so low impact change to allow session poolers to correctly handle t

[COMMITTERS] pgsql: Re-classify ERRCODE_DATABASE_DROPPED to 57P04

2011-02-01 Thread Simon Riggs
Re-classify ERRCODE_DATABASE_DROPPED to 57P04 Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=56b21b7ae38bc1efb701e7ebfd208e2e194e7998 Modified Files -- doc/src/sgml/errcodes.sgml | 11 ++- src/backend/tcop/postgres.