[COMMITTERS] pgsql: Fix bogus comments

2015-10-15 Thread Alvaro Herrera
Fix bogus comments Author: Amit Langote Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/817588bc2bd684b630da11ca068505dbd985de10 Modified Files -- src/backend/commands/tablecmds.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Sent via

[COMMITTERS] pgsql: Fix bogus comments

2015-10-15 Thread Alvaro Herrera
Fix bogus comments Author: Amit Langote Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/54e07be2dfd314a64dc2ce03a6a7f59cac1c8a13 Modified Files -- src/backend/commands/tablecmds.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- S

[COMMITTERS] pgsql: Allow FDWs to push down quals without breaking EvalPlanQual rech

2015-10-15 Thread Robert Haas
Allow FDWs to push down quals without breaking EvalPlanQual rechecks. This fixes a long-standing bug which was discovered while investigating the interaction between the new join pushdown code and the EvalPlanQual machinery: if a ForeignScan appears on the inner side of a paramaterized nestloop, a

[COMMITTERS] pgsql: Allow FDWs to push down quals without breaking EvalPlanQual rech

2015-10-15 Thread Robert Haas
Allow FDWs to push down quals without breaking EvalPlanQual rechecks. This fixes a long-standing bug which was discovered while investigating the interaction between the new join pushdown code and the EvalPlanQual machinery: if a ForeignScan appears on the inner side of a paramaterized nestloop, a

[COMMITTERS] pgsql: Revert "Have dtrace depend on object files directly, not objfile

2015-10-15 Thread Robert Haas
Revert "Have dtrace depend on object files directly, not objfiles.txt" This reverts commit 73537828537239923a0f827a92b20502a3efa52d. Per report from Tom Lane, this breaks parallel builds. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/08fbad0afd62690cc82990c0504529

[COMMITTERS] pgsql: Fix NULL handling in datum_to_jsonb().

2015-10-15 Thread Tom Lane
Fix NULL handling in datum_to_jsonb(). The function failed to adhere to its specification that the "tcategory" argument should not be examined when the input value is NULL. This resulted in a crash in some cases. Per bug #13680 from Boyko Yordanov. In passing, re-pgindent some recent changes in

[COMMITTERS] pgsql: Fix NULL handling in datum_to_jsonb().

2015-10-15 Thread Tom Lane
Fix NULL handling in datum_to_jsonb(). The function failed to adhere to its specification that the "tcategory" argument should not be examined when the input value is NULL. This resulted in a crash in some cases. Per bug #13680 from Boyko Yordanov. In passing, re-pgindent some recent changes in