Re: pgsql: Use better comment marker in Autoconf input

2019-02-10 Thread Andres Freund
Hi, On 2019-02-10 01:45:58 -0500, Tom Lane wrote: > Andres Freund writes: > > On 2019-02-09 14:57:27 +, Peter Eisentraut wrote: > > I'd for a minute just put this down > > to an independent upgrade on the animal, but the other branches still > > build fine. > > The error seems to be a librar

pgsql: Fix trigger drop procedure

2019-02-10 Thread Alvaro Herrera
Fix trigger drop procedure After commit 123cc697a8eb, we remove redundant FK action triggers during partition ATTACH by merely deleting the catalog tuple, but that's wrong: it should use performDeletion() instead. Repair, and make the comments more explicit. Per code review from Tom Lane. Discu

pgsql: Fix trigger drop procedure

2019-02-10 Thread Alvaro Herrera
Fix trigger drop procedure After commit 123cc697a8eb, we remove redundant FK action triggers during partition ATTACH by merely deleting the catalog tuple, but that's wrong: it should use performDeletion() instead. Repair, and make the comments more explicit. Per code review from Tom Lane. Discu

pgsql: Second draft of back-branch release notes.

2019-02-10 Thread Tom Lane
Second draft of back-branch release notes. Add items for the weekend's commits. Add corrections from Peter Geoghegan, Amit Kapila, and Alexander Kuzmenkov. Some copy-editing of my own too. Branch -- REL_11_STABLE Details --- https://git.postgresql.org/pg/commitdiff/1f67ff8ce55a3397733f3

pgsql: Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21.

2019-02-10 Thread Tom Lane
Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21. Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/pg/commitdiff/efb6b08e527c08a74696c9d41ba5bf068bc47367 Modified Files -- doc/src/sgml/release-9.5.sgml | 867 ++ 1 file

pgsql: Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21.

2019-02-10 Thread Tom Lane
Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21. Branch -- REL_11_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2eebda274fa97e5fee6a6001a07eed079e5be69f Modified Files -- doc/src/sgml/release-11.sgml | 63 1 file

pgsql: Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21.

2019-02-10 Thread Tom Lane
Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21. Branch -- REL9_4_STABLE Details --- https://git.postgresql.org/pg/commitdiff/8898cf3040364f9591112fbdc99d363ac00d9c0a Modified Files -- doc/src/sgml/release-9.4.sgml | 799 ++ 1 file

pgsql: Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21.

2019-02-10 Thread Tom Lane
Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21. Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/73f95272b9412a26c352099a2b1bbcd6cf0f36f8 Modified Files -- doc/src/sgml/release-9.6.sgml | 954 ++ 1 file

pgsql: Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21.

2019-02-10 Thread Tom Lane
Release notes for 11.2, 10.7, 9.6.12, 9.5.16, 9.4.21. Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/638befaae1cedbb509695a8bc227f36d9dd8dbcb Modified Files -- doc/src/sgml/release-10.sgml | 1138 ++ 1 file

pgsql: Add per-test-script runtime display to pg_regress.

2019-02-10 Thread Tom Lane
Add per-test-script runtime display to pg_regress. It seems useful to have this information available, so that it's easier to tell when a test script is taking a disproportionate amount of time. Discussion: https://postgr.es/m/[email protected] Branch -- master Details ---

pgsql: Fix indexable-row-comparison logic to account for covering index

2019-02-10 Thread Tom Lane
Fix indexable-row-comparison logic to account for covering indexes. indxpath.c needs a good deal more attention for covering indexes than it's gotten. But so far as I can tell, the only really awful breakage is in expand_indexqual_rowcompare (nee adjust_rowcompare_for_index), which was only half

pgsql: Fix indexable-row-comparison logic to account for covering index

2019-02-10 Thread Tom Lane
Fix indexable-row-comparison logic to account for covering indexes. indxpath.c needs a good deal more attention for covering indexes than it's gotten. But so far as I can tell, the only really awful breakage is in expand_indexqual_rowcompare (nee adjust_rowcompare_for_index), which was only half

Re: pgsql: Use better comment marker in Autoconf input

2019-02-10 Thread Thomas Munro
On Sun, 10 Feb 2019 at 19:22, Andres Freund wrote: > On 2019-02-10 01:45:58 -0500, Tom Lane wrote: > > Andres Freund writes: > > > On 2019-02-09 14:57:27 +, Peter Eisentraut wrote: > > > I'd for a minute just put this down > > > to an independent upgrade on the animal, but the other branches