[COMMITTERS] pgsql: Further sepgsql documentation cleanup.

2011-02-02 Thread Robert Haas
Further sepgsql documentation cleanup. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=4c4daf671074cc64290e9255c14365b55bf7a47b Modified Files -- doc/src/sgml/sepgsql.sgml | 180 + 1 fil

[COMMITTERS] pgsql: sepgsql doc fix

2011-02-02 Thread Robert Haas
sepgsql doc fix KaiGai Kohei Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=4ff9dec1386b714f6c26a52ca6880b14e94dd1db Modified Files -- doc/src/sgml/sepgsql.sgml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Se

[COMMITTERS] pgsql: Minor sepgsql regression test fixes.

2011-02-02 Thread Robert Haas
Minor sepgsql regression test fixes. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=87d967f70f4866c17404f6a9b8062f892ed31e08 Modified Files -- contrib/sepgsql/.gitignore |2 ++ contrib/sepgsql/expected/dml.out |3 ++-

[COMMITTERS] pgsql: Various sepgsql corrections.

2011-02-02 Thread Robert Haas
Various sepgsql corrections. KaiGai Kohei Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=c7689ee73346d198177dee538501bb1148c8cebb Modified Files -- contrib/sepgsql/dml.c | 37 ++ contrib/sepgsql/expecte

[COMMITTERS] pgsql: Rename function to first_path_var_separator() to clarify it work

2011-02-02 Thread Bruce Momjian
Rename function to first_path_var_separator() to clarify it works with path variables, not directory paths. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=426227850be145b52cb610455000fc005df5ce4e Modified Files -- src/backend/uti

[COMMITTERS] pgsql: Clearify macro IS_PATH_VAR_SEP in path.c so it is clear this is

2011-02-02 Thread Bruce Momjian
Clearify macro IS_PATH_VAR_SEP in path.c so it is clear this is a path variable, not a directory path. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=bffb638d16999ee7d3c8796e77dd87ac82719c7d Modified Files -- src/port/path.c |

[COMMITTERS] pgsql: Log restartpoints in the same fashion as checkpoints.

2011-02-02 Thread Robert Haas
Log restartpoints in the same fashion as checkpoints. Prior to 9.0, restartpoints never created, deleted, or recycled WAL files, but now they can. This code makes log_checkpoints treat checkpoints and restartpoints symmetrically. It also adjusts up the documentation of the parameter to mention r

[COMMITTERS] pgsql: Repair multiple breakage in Windows-specific code for appending

2011-02-02 Thread Tom Lane
Repair multiple breakage in Windows-specific code for appending '.exe'. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=cd7d748d51df3c5dedcc49a3603e6fa9c050f237 Modified Files -- contrib/pg_upgrade/exec.c | 12 +++- 1 fil

Re: [COMMITTERS] pgsql: Wrap PL/Python SPI calls into subtransactions

2011-02-02 Thread Tom Lane
Andrew Dunstan writes: > On 02/02/2011 03:09 PM, Peter Eisentraut wrote: >> Wrap PL/Python SPI calls into subtransactions > We seem to have major buildfarm breakage from this. Looks like Peter forgot again to check plpython_unicode_3.out. I imagine he's gone to bed by now, so I pushed a fix. No

[COMMITTERS] pgsql: Clean up missed change to plpython expected files.

2011-02-02 Thread Tom Lane
Clean up missed change to plpython expected files. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=907855ac759a221f95b502cd7cbf2ec851fe9523 Modified Files -- src/pl/plpython/expected/plpython_unicode_3.out |2 -- 1 files change

Re: [COMMITTERS] pgsql: Wrap PL/Python SPI calls into subtransactions

2011-02-02 Thread Andrew Dunstan
On 02/02/2011 03:09 PM, Peter Eisentraut wrote: Wrap PL/Python SPI calls into subtransactions This allows the language-specific try/catch construct to catch and handle exceptions arising from SPI calls, matching the behavior of other PLs. As an additional bonus you no longer get all the ugly

[COMMITTERS] pgsql: Mark all GUC variables with markup, rather than

2011-02-02 Thread Bruce Momjian
Mark all GUC variables with markup, rather than . Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=03c25dd900d97c0868ad20b925a78d41ec603578 Modified Files -- doc/src/sgml/datetime.sgml |6 ++-- doc/src/sgml/libpq.sgml

[COMMITTERS] pgsql: Fix wrong verb in pg_upgrade text message, per Haas.

2011-02-02 Thread Bruce Momjian
Fix wrong verb in pg_upgrade text message, per Haas. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=2b6e2dee7805ec5b477af00c01c54c208bf106eb Modified Files -- contrib/pg_upgrade/check.c |2 +- 1 files changed, 1 insertions(+),

[COMMITTERS] pgsql: Simplify pg_upgrade checking of executable permissions.

2011-02-02 Thread Bruce Momjian
Simplify pg_upgrade checking of executable permissions. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=9d220fc17eafcbc99fcea7bdbbb246fee473eac7 Modified Files -- contrib/pg_upgrade/exec.c | 73 +++---

[COMMITTERS] pgsql: Wrap PL/Python SPI calls into subtransactions

2011-02-02 Thread Peter Eisentraut
Wrap PL/Python SPI calls into subtransactions This allows the language-specific try/catch construct to catch and handle exceptions arising from SPI calls, matching the behavior of other PLs. As an additional bonus you no longer get all the ugly "unrecognized error in PLy_spi_execute_query" errors

[COMMITTERS] pgsql: Add comment on why we're passing a useless 'false' to the plper

2011-02-02 Thread Andrew Dunstan
Add comment on why we're passing a useless 'false' to the plperl function compiler. It's for compatibility with modules like PostgreSQL::PLPerl::NYTProf. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=c73fe72e2735d20aa132640d8fab4e0eca1ced

[COMMITTERS] textsearch-ja - eudc: eudc version 1.1.0.

2011-02-02 Thread User Itagaki
Log Message: --- eudc version 1.1.0. Add MSVC project files for PG 8.3/8.4/9.0 32bit and 9.0 64bit. Modified Files: -- eudc: COPYRIGHT (r1.1.1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/eudc/COPYRIGHT?r1=1.1.1.1&r2=1.2) eu