[COMMITTERS] pgsql: doc: Add Node.js and Go drivers to client interfaces

2017-06-09 Thread Peter Eisentraut
doc: Add Node.js and Go drivers to client interfaces Also, fix client interface JDBC language name to Java. Author: Sehrope Sarkuni Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/e20f679f66fb7930215a1b59f13b5b1c06bfc456 Modified Files -- doc/src/sgml

[COMMITTERS] pgsql: doc: Improve types in example

2017-06-09 Thread Peter Eisentraut
doc: Improve types in example Reported-by: Nikolaus Thiel Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/0332993c4e14f13b211f41535f77aadb305fd354 Modified Files -- doc/src/sgml/xfunc.sgml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --

Re: [COMMITTERS] pgsql: Use standard interrupt handling in logical replication launcher.

2017-06-09 Thread Tom Lane
Andres Freund writes: > On 2017-06-09 17:47:23 -0400, Tom Lane wrote: >> On the less good side, something seems to have broken the pg_upgrade >> tests recently on skink and some (not all) of the CLOBBER_CACHE_ALWAYS >> animals. > Yea, I saw skinks failure. Unfortunately it seems we're either not

Re: [COMMITTERS] pgsql: Use standard interrupt handling in logical replication launcher.

2017-06-09 Thread Andres Freund
On 2017-06-09 17:47:23 -0400, Tom Lane wrote: > Andres Freund writes: > > Use standard interrupt handling in logical replication launcher. > > This seems to have fixed nightjar's subscription-test failures. > Were you expecting that? Well, hoping ;). Petr had pointed it out as the probable sour

Re: [COMMITTERS] pgsql: Use standard interrupt handling in logical replication launcher.

2017-06-09 Thread Tom Lane
Andres Freund writes: > Use standard interrupt handling in logical replication launcher. This seems to have fixed nightjar's subscription-test failures. Were you expecting that? On the less good side, something seems to have broken the pg_upgrade tests recently on skink and some (not all) of the

[COMMITTERS] pgsql: doc: Document that subscriptions to same server might hang

2017-06-09 Thread Peter Eisentraut
doc: Document that subscriptions to same server might hang Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/0933fcee9851eb2afcd41db1ee4425153f4cbdd3 Modified Files -- doc/src/sgml/ref/create_subscription.sgml | 13 + 1 file changed, 13 insertio

[COMMITTERS] pgsql: Silence warning about uninitialized 'ret' variable on some compi

2017-06-09 Thread Heikki Linnakangas
Silence warning about uninitialized 'ret' variable on some compilers. If the compiler doesn't notice that the switch-statement handles all possible values of the enum, it might complain that 'ret' is being used without initialization. Jeff Janes reported that on gcc 4.4.7. Discussion: https://ww

[COMMITTERS] pgsql: Formatting improvements in config file samples

2017-06-09 Thread Peter Eisentraut
Formatting improvements in config file samples Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/e11e24b1ed619ca329a532e5e5ae8b4e5e728f71 Modified Files -- src/backend/access/transam/recovery.conf.sample | 9 + src/backend/utils/misc/postgresql.conf

[COMMITTERS] pgsql: Update code comments

2017-06-09 Thread Peter Eisentraut
Update code comments Author: Neha Khatri Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/8c9387c55e67ca7c23bb8ffd7e8342cca7be127b Modified Files -- src/backend/access/transam/xlogfuncs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Se

[COMMITTERS] pgsql: Fix typo

2017-06-09 Thread Peter Eisentraut
Fix typo Author: Masahiko Sawada Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/dabbe8d56470f456e997700efa7d592306ca4274 Modified Files -- src/backend/storage/ipc/shm_mq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql-commi

[COMMITTERS] pgsql: psql: Update tab completion for ALTER SUBSCRIPTION

2017-06-09 Thread Peter Eisentraut
psql: Update tab completion for ALTER SUBSCRIPTION Author: Masahiko Sawada Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/57f2ff00d7e25ffe33d7e2955428c005d2511277 Modified Files -- src/bin/psql/tab-complete.c | 12 1 file changed, 12 inser

[COMMITTERS] pgsql: Improve tablesync behavior with concurrent changes

2017-06-09 Thread Peter Eisentraut
Improve tablesync behavior with concurrent changes When a table is removed from a subscription before the tablesync worker could start, this would previously result in an error when reading pg_subscription_rel. Now we just ignore this. Author: Masahiko Sawada Branch -- master Details

[COMMITTERS] pgsql: Give a better error message on invalid hostaddr option.

2017-06-09 Thread Heikki Linnakangas
Give a better error message on invalid hostaddr option. If you accidentally pass a host name in the hostaddr option, e.g. hostaddr=localhost, you get an error like: psql: could not translate host name "localhost" to address: Name or service not known That's a bit confusing, because it implies t

[COMMITTERS] pgsql: Fix script name in README.

2017-06-09 Thread Heikki Linnakangas
Fix script name in README. The script was rewritten in Perl, and renamed from regress.sh to regress.pl, back in 2012. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/67d370e619897ace44285b1fe10fd788119242ac Modified Files -- src/interfaces/libpq/test/RE