Re: pgsql: Add parallel-aware hash joins.

2018-01-24 Thread Tom Lane
Andres Freund writes: > On 2018-01-22 23:17:47 +1300, Thomas Munro wrote: >> Here is a patch that halves the size of the test tables used. >> ... Does this pass repeatedly on gaur? > I'd say, let's just commit it and see? Oh, sorry, I forgot I was on the hook to check that. The news isn't good:

pgsql: Avoid referencing off the end of subplan_partition_offsets.

2018-01-24 Thread Robert Haas
Avoid referencing off the end of subplan_partition_offsets. Report by buildfarm member skink and Tom Lane. Analysis by me. Patch by Amit Khandekar. Discussion: http://postgr.es/m/CAJ3gD9fVA1iXQYhfqHP5n_TEd4U9=v8tl_cc-okrnrmxgdv...@mail.gmail.com Branch -- master Details --- https://gi

Re: pgsql: Add parallel-aware hash joins.

2018-01-24 Thread Andres Freund
Hi, On 2018-01-22 23:17:47 +1300, Thomas Munro wrote: > On Thu, Dec 28, 2017 at 5:26 PM, Tom Lane wrote: > Here is a patch that halves the size of the test tables used. I don't > want them to be too small because I want some some real parallel > processing at least sometimes. On my slowest syst

pgsql: doc: properly indent CREATE TRIGGER paragraph

2018-01-24 Thread Bruce Momjian
doc: properly indent CREATE TRIGGER paragraph This was done to match the surrounding indentation. Text added in PG 10. Backpatch-through: 10 Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/d6ab7203607a3f43fe41d384f46c15bdac68d745 Modified Files -- do

pgsql: doc: properly indent CREATE TRIGGER paragraph

2018-01-24 Thread Bruce Momjian
doc: properly indent CREATE TRIGGER paragraph This was done to match the surrounding indentation. Text added in PG 10. Backpatch-through: 10 Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/48de935b08895d6562f27105ff3bd2b7ef8e5775 Modified Files --

pgsql: Add tests for record_image_eq and record_image_cmp

2018-01-24 Thread Peter Eisentraut
Add tests for record_image_eq and record_image_cmp record_image_eq was covered a bit by the materialized view code that it is meant to support, but record_image_cmp was not tested at all. While we're here, add more tests to record_eq and record_cmp as well, for symmetry. Reviewed-by: Michael Paq

pgsql: doc: clarify use of RegisterDynamicBackgroundWorker

2018-01-24 Thread Bruce Momjian
doc: clarify use of RegisterDynamicBackgroundWorker Document likely use of RegisterDynamicBackgroundWorker by another background worker. Reported-by: Chapman Flack Discussion: https://postgr.es/m/CAB7nPqTdi=J9HH8PPPiEOohebdd+xkgbbhdY7=vbgnz3ckz...@mail.gmail.com Author: Chapman Flack Branch