[COMMITTERS] pgsql: initdb: Improve some messages

2013-04-24 Thread Peter Eisentraut
initdb: Improve some messages Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4c0343d4af716813388a585390f5660c17a848f9 Modified Files -- src/bin/initdb/initdb.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) -- Sent via pgsql-committers

[COMMITTERS] pgsql: pg_basebackup: Add missing newlines at end of lines

2013-04-24 Thread Peter Eisentraut
pg_basebackup: Add missing newlines at end of lines Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/6cf84628342ca859a15c9b1576fdbebc3575a0d2 Modified Files -- src/bin/pg_basebackup/receivelog.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)

[COMMITTERS] pgsql: PL/pgSQL doc: Add example for RETURN QUERY

2013-04-24 Thread Peter Eisentraut
PL/pgSQL doc: Add example for RETURN QUERY Erwin Brandstetter and Pavel Stěhule Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4d67961110d17768021bac2c00fd395942d03170 Modified Files -- doc/src/sgml/plpgsql.sgml | 30 ++ 1 f

[COMMITTERS] pgsql: Add missing #include.

2013-04-24 Thread Heikki Linnakangas
Add missing #include. On non-Windows systems, sys/time.h was pulled in by portability/instr_time.h, which pulled in time.h. We certainly should include time.h directly, since we're using time(2), but the indirect include masked the problem on most platforms. Andres Freund Branch -- master D

[COMMITTERS] pgsql: Fix assertion failure for REFRESH MATERIALIZED VIEW in PL.

2013-04-24 Thread Kevin Grittner
Fix assertion failure for REFRESH MATERIALIZED VIEW in PL. This was due to incomplete implementation of rowcount reporting for RMV, which was due to initial waffling on whether it should be provided. It seems unlikely to be a useful or universally available number as more sophisticated technique

[COMMITTERS] pgsql: Make fast promotion the default promotion mode.

2013-04-24 Thread Simon Riggs
Make fast promotion the default promotion mode. Continue to allow a request for synchronous checkpoints as a mechanism in case of problems. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2317a63328cd9d1c22d02218c6959f340b63d98f Modified Files -- src/back