[COMMITTERS] pgsql: Update SQL features list

2012-05-27 Thread Peter Eisentraut
Update SQL features list Set E081 Basic Privileges to supported, since by the letter of it, we support it, even though not all possible forms of USAGE privileges are implemented. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/388d2516792bb22d461d0b2af38730bfdcbf9027

[COMMITTERS] pgsql: psql: Remove notice about readline from --version output

2012-05-27 Thread Peter Eisentraut
psql: Remove notice about readline from --version output This was from a time when readline support wasn't standard. And it doesn't help analyzing current line editing library problems. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8e497c731b481aac15fed5cd006fcd64

[COMMITTERS] pgsql: Suppress -Wunused-result warning about write()

2012-05-27 Thread Peter Eisentraut
Suppress -Wunused-result warning about write() This is related to aa90e148ca70a235897b1227f1a7cd1c66bc5368, but this code is only used under -DLINUX_OOM_ADJ, so it was apparently overlooked then. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/27314d32a883e3c4667d824

[COMMITTERS] pgsql: PL/Perl: Avoid compiler warning from clang

2012-05-27 Thread Peter Eisentraut
PL/Perl: Avoid compiler warning from clang Use SvREFCNT_inc_simple_void() instead of SvREFCNT_inc() to avoid warning about unused return value. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/a8b92b6090f14a3a84d2b904eff1794e21047fae Modified Files -- src

[COMMITTERS] pgsql: Improve pg_upgrade C comment.

2012-05-27 Thread Bruce Momjian
Improve pg_upgrade C comment. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4498a3407acfff83ab791d0d9764c70566ab840f Modified Files -- contrib/pg_upgrade/function.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via pgsql-committe

[COMMITTERS] pgsql: Add C comment explaining why we can't exclude checking functions

2012-05-27 Thread Bruce Momjian
Add C comment explaining why we can't exclude checking functions in the pg_catalog schema, even though they are not explicitly dumped (they are implicitly dumped, e.g. create language plperl). Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/20a3830b81d07aca1b8c3e954b4

[COMMITTERS] pgsql: Add pg_update C comment about problems with plpython_call_handle

2012-05-27 Thread Bruce Momjian
Add pg_update C comment about problems with plpython_call_handler(). Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/d4696fa68f88f371e9da77cc0319fa0b947fd911 Modified Files -- contrib/pg_upgrade/function.c |6 ++ 1 files changed, 6 insertions(+), 0

[COMMITTERS] pgsql: Make pg_recievexlog by default loop on connection failures

2012-05-27 Thread Magnus Hagander
Make pg_recievexlog by default loop on connection failures Avoids the need for an external script in the most common scenario. Behavior can be overridden using the -n/--noloop commandline parameter. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/16282ae688de2b320cf1

[COMMITTERS] pgsql: Fix handling of pg_stat_statements.stat temporary file

2012-05-27 Thread Magnus Hagander
Fix handling of pg_stat_statements.stat temporary file Write the file to a temporary name and then rename() it into the permanent name, to ensure it can't end up half-written and corrupt in case of a crash during shutdown. Unlink the file after it has been read so it's removed from the data direc

[COMMITTERS] pgsql: Fix handling of pg_stat_statements.stat temporary file

2012-05-27 Thread Magnus Hagander
Fix handling of pg_stat_statements.stat temporary file Write the file to a temporary name and then rename() it into the permanent name, to ensure it can't end up half-written and corrupt in case of a crash during shutdown. Unlink the file after it has been read so it's removed from the data direc

[COMMITTERS] pgsql: Fix handling of pg_stat_statements.stat temporary file

2012-05-27 Thread Magnus Hagander
Fix handling of pg_stat_statements.stat temporary file Write the file to a temporary name and then rename() it into the permanent name, to ensure it can't end up half-written and corrupt in case of a crash during shutdown. Unlink the file after it has been read so it's removed from the data direc