[COMMITTERS] pgsql: Improve low-level backup documentation.

2017-08-25 Thread Robert Haas
Improve low-level backup documentation. Our documentation hasn't really caught up with the fact that non-exclusive backups can now be taken using pg_start_backup and pg_stop_backup even on standbys. Update, also correcting some errors introduced by 52f8a59dd953c6820baf153e97cf07d31b8ac1d6. Update

[COMMITTERS] pgsql: Improve low-level backup documentation.

2017-08-25 Thread Robert Haas
Improve low-level backup documentation. Our documentation hasn't really caught up with the fact that non-exclusive backups can now be taken using pg_start_backup and pg_stop_backup even on standbys. Update, also correcting some errors introduced by 52f8a59dd953c6820baf153e97cf07d31b8ac1d6. Update

[COMMITTERS] pgsql: Fix locale dependency in new ecpg test case.

2017-08-25 Thread Tom Lane
Fix locale dependency in new ecpg test case. Force sorting in "C" locale so that the output ordering doesn't vary, per buildfarm. In passing, add missing .gitignore entries. Discussion: https://postgr.es/m/0975f4bb-5dee-c33c-b719-3ce44026d...@chrullrich.net Branch -- master Details --

[COMMITTERS] pgsql: Message translatability fixes

2017-08-25 Thread Peter Eisentraut
Message translatability fixes Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/e86ac70d6ef12d8639885fcdb238fdaabec80aa7 Modified Files -- src/bin/pg_test_fsync/pg_test_fsync.c | 30 +- src/bin/pg_waldump/pg_waldump.c | 20

[COMMITTERS] pgsql: pg_upgrade: Remove more dead code

2017-08-25 Thread Peter Eisentraut
pg_upgrade: Remove more dead code related to 6ce6a61840cc90172ad3da7bf303656132fa5fab Reported-by: Christoph Berg Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/33043c69df790d9a08d2ac682c6f1d41c9a652bd Modified Files -- src/bin/pg_upgrade/pg_u

[COMMITTERS] pgsql: Message translatability fixes

2017-08-25 Thread Peter Eisentraut
Message translatability fixes Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/9c57848921ec90fca8dfd297adcb4d5d07d40160 Modified Files -- src/bin/pg_test_fsync/pg_test_fsync.c | 30 +- src/bin/pg_waldump/pg_waldump.c

[COMMITTERS] pgsql: pg_upgrade: Remove more dead code

2017-08-25 Thread Peter Eisentraut
pg_upgrade: Remove more dead code related to 6ce6a61840cc90172ad3da7bf303656132fa5fab Reported-by: Christoph Berg Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/99ce446ada332fd8879fcdbded9daa891595f089 Modified Files -- src/bin/pg_upgrade/pg_upgrade.

[COMMITTERS] pgsql: Implement DO CONTINUE action for ECPG WHENEVER statement.

2017-08-25 Thread Michael Meskes
Implement DO CONTINUE action for ECPG WHENEVER statement. Author: Vinayak Pokale Reviewed-By: Masahiko Sawada Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/d22e9d530516f7c9c56d00eff53cf19e45ef348c Modified Files -- doc/src/sgml/ecpg.sgml

[COMMITTERS] pgsql: Code review for pushing LIMIT through subqueries.

2017-08-25 Thread Tom Lane
Code review for pushing LIMIT through subqueries. Minor improvements for commit 1f6d515a6. We do not need the (rather expensive) test for SRFs in the targetlist, because since v10 any such SRFs would appear in separate ProjectSet nodes. Also, make the code look more like the existing cases by tu