[COMMITTERS] pgsql: Allow parallelism in COPY (query) TO ...;

2017-06-02 Thread Andres Freund
Allow parallelism in COPY (query) TO ...; Previously this was not allowed, as copy.c didn't set the CURSOR_OPT_PARALLEL_OK flag when planning the query. Set it. While the lack of parallel query for COPY isn't strictly speaking a bug, it does prevent parallelism from being used in a facility commo

[COMMITTERS] pgsql: Allow parallelism in COPY (query) TO ...;

2017-06-02 Thread Andres Freund
Allow parallelism in COPY (query) TO ...; Previously this was not allowed, as copy.c didn't set the CURSOR_OPT_PARALLEL_OK flag when planning the query. Set it. While the lack of parallel query for COPY isn't strictly speaking a bug, it does prevent parallelism from being used in a facility commo

Re: [COMMITTERS] pgsql: Fix signal handling in logical replication workers

2017-06-02 Thread Petr Jelinek
On 03/06/17 02:59, Tom Lane wrote: > I wrote: >> Peter Eisentraut writes: >>> Fix signal handling in logical replication workers > >> It looks like this broke buildfarm member nightjar. >> Not clear why - I don't see anything especially platform-specific >> in the patch. > > To muddy the waters

Re: [COMMITTERS] pgsql: Fix signal handling in logical replication workers

2017-06-02 Thread Tom Lane
I wrote: > Peter Eisentraut writes: >> Fix signal handling in logical replication workers > It looks like this broke buildfarm member nightjar. > Not clear why - I don't see anything especially platform-specific > in the patch. To muddy the waters further, I tried to duplicate the failure on Fre

Re: [COMMITTERS] pgsql: Fix signal handling in logical replication workers

2017-06-02 Thread Tom Lane
Peter Eisentraut writes: > Fix signal handling in logical replication workers It looks like this broke buildfarm member nightjar. Not clear why - I don't see anything especially platform-specific in the patch. regards, tom lane -- Sent via pgsql-committers mailing list

[COMMITTERS] pgsql: Remove replication slot name check from ReplicationSlotAcquire()

2017-06-02 Thread Peter Eisentraut
Remove replication slot name check from ReplicationSlotAcquire() When trying to access a replication slot that is supposed to already exist, we don't need to check the naming rules again. If the slot does not exist, we will then get a "does not exist" error message, which is generally more useful

[COMMITTERS] pgsql: doc: Add note that DROP SUBSCRIPTION drops replication slot

2017-06-02 Thread Peter Eisentraut
doc: Add note that DROP SUBSCRIPTION drops replication slot Add some information about what to do when this fails. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/de492c17f064ea3ddcb73d9529f3e30a1483ffa5 Modified Files -- doc/src/sgml/ref/drop_subscript

[COMMITTERS] pgsql: Fix signal handling in logical replication workers

2017-06-02 Thread Peter Eisentraut
Fix signal handling in logical replication workers The logical replication worker processes now use the normal die() handler for SIGTERM and CHECK_FOR_INTERRUPTS() instead of custom code. One problem before was that the apply worker would not exit promptly when a subscription was dropped, which co

[COMMITTERS] pgsql: Fix copy/paste mistake in comment

2017-06-02 Thread Magnus Hagander
Fix copy/paste mistake in comment Amit Langote Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/acbd8375e954774181b673a31b814e9d46f436a5 Modified Files -- src/backend/utils/cache/attoptcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Se

[COMMITTERS] pgsql: Fix typo in comment

2017-06-02 Thread Magnus Hagander
Fix typo in comment Masahiko Sawada Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/483373979b17f10b2dfa4b12e68c3b961a9f8454 Modified Files -- src/backend/storage/lmgr/predicate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql