pgsql: Documentation updates for partitioning.

2018-05-07 Thread Robert Haas
Documentation updates for partitioning. Takayuki Tsunakawa Discussion: http://postgr.es/m/0A3221C70F24FB45833433255569204D1F965627@G01JPEXMBYT05 Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/f955d7ee166dfa053caa6d1bdb2a28b28b212fe3 Modified Files --

pgsql: doc: Fix minor markup issue

2018-05-07 Thread Peter Eisentraut
doc: Fix minor markup issue There shouldn't be a line break between two adjacent tags, because that will appear as whitespace in the output. (The rendering engine might in turn collapse that whitespace away, so it might not actually make a difference, but it's more correct this way.) Branch

pgsql: doc: Improve spelling and wording a bit

2018-05-07 Thread Peter Eisentraut
doc: Improve spelling and wording a bit Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/a43a4509f8a9249ba6c2734596c029f0430a75bc Modified Files -- doc/src/sgml/config.sgml | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-)

pgsql: Translation updates

2018-05-07 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 8807686cb166e570052e709ab45103c4e8ca2e29 Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/pg/commitdiff/94cd3c7dd61df9725815f648b7115f014ea1c376 Modified Files

pgsql: Translation updates

2018-05-07 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 468bfbb8c2a61a4f396a8efdbf2b661c9afac3c2 Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/143132c832885de37a70281b1490b1a4948d28a8 Modified Files

pgsql: Translation updates

2018-05-07 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: ffe3ce875edb7ff07db5351ed1640897fe9eb92d Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2a771988f4daf6495ab63e9cb69c9d3a84eca1f0 Modified Files

pgsql: Translation updates

2018-05-07 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: d73a8c239ac494c183e266261c657580526d4cba Branch -- REL9_4_STABLE Details --- https://git.postgresql.org/pg/commitdiff/dc441d5c2da745fe79b2b1ea27d06e7aeae8c941 Modified Files

pgsql: Translation updates

2018-05-07 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 056d2aae93df18bf306a02b1e4f1e766299af3e6 Branch -- REL9_3_STABLE Details --- https://git.postgresql.org/pg/commitdiff/d58aaf7bb5f6d15321471e38e7d25802726aff60 Modified Files

pgsql: Last-minute updates for release notes.

2018-05-07 Thread Tom Lane
Last-minute updates for release notes. The set of functions that need parallel-safety adjustments isn't the same in 9.6 as 10, so I shouldn't have blindly back-patched that list. Adjust as needed. Also, provide examples of the commands to issue. Branch -- REL9_4_STABLE Details --- https

pgsql: Last-minute updates for release notes.

2018-05-07 Thread Tom Lane
Last-minute updates for release notes. The set of functions that need parallel-safety adjustments isn't the same in 9.6 as 10, so I shouldn't have blindly back-patched that list. Adjust as needed. Also, provide examples of the commands to issue. Branch -- master Details --- https://git.

pgsql: Last-minute updates for release notes.

2018-05-07 Thread Tom Lane
Last-minute updates for release notes. The set of functions that need parallel-safety adjustments isn't the same in 9.6 as 10, so I shouldn't have blindly back-patched that list. Adjust as needed. Also, provide examples of the commands to issue. Branch -- REL_10_STABLE Details --- https

pgsql: Last-minute updates for release notes.

2018-05-07 Thread Tom Lane
Last-minute updates for release notes. The set of functions that need parallel-safety adjustments isn't the same in 9.6 as 10, so I shouldn't have blindly back-patched that list. Adjust as needed. Also, provide examples of the commands to issue. Branch -- REL9_5_STABLE Details --- https

pgsql: Last-minute updates for release notes.

2018-05-07 Thread Tom Lane
Last-minute updates for release notes. The set of functions that need parallel-safety adjustments isn't the same in 9.6 as 10, so I shouldn't have blindly back-patched that list. Adjust as needed. Also, provide examples of the commands to issue. Branch -- REL9_3_STABLE Details --- https

pgsql: Last-minute updates for release notes.

2018-05-07 Thread Tom Lane
Last-minute updates for release notes. The set of functions that need parallel-safety adjustments isn't the same in 9.6 as 10, so I shouldn't have blindly back-patched that list. Adjust as needed. Also, provide examples of the commands to issue. Branch -- REL9_6_STABLE Details --- https

pgsql: Suppress compiler warnings when building with --enable-dtrace.

2018-05-07 Thread Tom Lane
Suppress compiler warnings when building with --enable-dtrace. Most versions of "dtrace -h" drop const qualifiers from the declarations of probe functions (though macOS gets it right). This causes compiler warnings when we pass in pointers to const. Repair by extending our existing post-processi

pgsql: Update oidjoins regression test for v11.

2018-05-07 Thread Tom Lane
Update oidjoins regression test for v11. Commit 86f575948 already manually updated the oidjoins test for the new pg_constraint.conparentid => pg_constraint.oid relationship, but failed to update findoidjoins/README, thus the apparent inconsistency here. Michael Paquier Discussion: https://postgr

pgsql: Undo extra chattiness of postmaster logs in TAP tests.

2018-05-07 Thread Tom Lane
Undo extra chattiness of postmaster logs in TAP tests. Commit 6271fceb8 changed PostgresNode.pm to force log_min_messages = debug1 in all TAP tests, without any discussion and without a concrete need for it. This makes some of the TAP tests noticeably slower (although much of that may be due to p

pgsql: Clean up some perlcritic warnings

2018-05-07 Thread Andrew Dunstan
Clean up some perlcritic warnings In Catalog.pm, mark eval of a string instead of a block as allowed. Disallow perlcritic completely in Gen_dummy_probes.pl, as it's generated code. Protect a couple of lines in plperl code from perltidy, so that the annotation for perlcritic stays on the same line

pgsql: Stamp 10.4.

2018-05-07 Thread Tom Lane
Stamp 10.4. Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/ab5e9caa4a3ec4765348a0482e88edcf3f6aab4a Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

pgsql: Stamp 9.6.9.

2018-05-07 Thread Tom Lane
Stamp 9.6.9. Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2f895f784fb31bf008162e9c52cc0b2c717823e8 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

pgsql: Stamp 9.5.13.

2018-05-07 Thread Tom Lane
Stamp 9.5.13. Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/pg/commitdiff/ceb2b0b0abaf0e7a14d25c3e75d4fd0b80714149 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

pgsql: Stamp 9.4.18.

2018-05-07 Thread Tom Lane
Stamp 9.4.18. Branch -- REL9_4_STABLE Details --- https://git.postgresql.org/pg/commitdiff/364998df87a8fc498302d4b02681909f81635914 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

pgsql: Stamp 9.3.23.

2018-05-07 Thread Tom Lane
Stamp 9.3.23. Branch -- REL9_3_STABLE Details --- https://git.postgresql.org/pg/commitdiff/ec8e7d60bac23b1b9102798afc30078aca9076ae Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

pgsql: Count heap tuples in non-SnapshotAny path in IndexBuildHeapRange

2018-05-07 Thread Tom Lane
Count heap tuples in non-SnapshotAny path in IndexBuildHeapRangeScan(). Brown-paper-bag bug in commit 7c91a0364: when we rearranged the placement of "reltuples += 1" statements, we missed including one in this code path. The net effect of that was that CREATE INDEX CONCURRENTLY would set the tabl