[COMMITTERS] pgsql: Corrections and improvements to generic parallel query documenta

2017-02-14 Thread Robert Haas
Corrections and improvements to generic parallel query documentation. David Rowley, reviewed by Brad DeJong, Amit Kapila, and me. Discussion: http://postgr.es/m/CAKJS1f81fob-M6RJyTVv3SCasxMuQpj37ReNOJ=tprhwd7h...@mail.gmail.com Branch -- master Details --- http://git.postgresql.org/pg/

[COMMITTERS] pgsql: Corrections and improvements to generic parallel query documenta

2017-02-14 Thread Robert Haas
Corrections and improvements to generic parallel query documentation. David Rowley, reviewed by Brad DeJong, Amit Kapila, and me. Discussion: http://postgr.es/m/CAKJS1f81fob-M6RJyTVv3SCasxMuQpj37ReNOJ=tprhwd7h...@mail.gmail.com Branch -- REL9_6_STABLE Details --- http://git.postgresql.

[COMMITTERS] pgsql: Replace reference to "xlog-method" with "wal-method" in error me

2017-02-14 Thread Fujii Masao
Replace reference to "xlog-method" with "wal-method" in error message. Commit 62e8b38 renamed "--xlog-method" option for pg_basebackup to "--wal-method", but forgot to update the error message mentioning that option. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/0d

[COMMITTERS] pgsql: Remove duplicate code in planner.c.

2017-02-14 Thread Tom Lane
Remove duplicate code in planner.c. I noticed while hacking on join UNION transforms that planner.c's function get_base_rel_indexes() just duplicates the functionality of get_relids_in_jointree(). It doesn't even have the excuse of being older code :-(. Drop it and use the latter function instea

[COMMITTERS] pgsql: Don't disallow dropping NOT NULL for a list partition key.

2017-02-14 Thread Robert Haas
Don't disallow dropping NOT NULL for a list partition key. Range partitioning doesn't support nulls in the partitioning columns, but list partitioning does. Amit Langote, per a complaint from Amul Sul Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/e28b1156122f4d48d

[COMMITTERS] pgsql: Minor fixes for WAL consistency checking.

2017-02-14 Thread Robert Haas
Minor fixes for WAL consistency checking. Michael Paquier, reviewed and slightly revised by me. Discussion: http://postgr.es/m/CAB7nPqRzCQb=vdfhvmtp0hmlbhu6z1agdo4gjsup-hp8jx+...@mail.gmail.com Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/fb47544d0ca18312bf0b9e5

[COMMITTERS] pgsql: Split index xlog headers from other private index headers.

2017-02-14 Thread Robert Haas
Split index xlog headers from other private index headers. The xlog-specific headers need to be included in both frontend code - specifically, pg_waldump - and the backend, but the remainder of the private headers for each index are only needed by the backend. By splitting the xlog stuff out into

[COMMITTERS] pgsql: Allow parallel workers to execute subplans.

2017-02-14 Thread Robert Haas
Allow parallel workers to execute subplans. This doesn't do anything to make Param nodes anything other than parallel-restricted, so this only helps with uncorrelated subplans, and it's not necessarily very cheap because each worker will run the subplan separately (just as a Hash Join will build a

[COMMITTERS] pgsql: Fix typo in comment.

2017-02-14 Thread Robert Haas
Fix typo in comment. Higuchi Daisuke Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8569955ee39650a667b9700385e1bc19fbf47069 Modified Files -- src/interfaces/libpq/fe-connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql-co