pgsql: Suppress compiler warning in non-SSL, non-assert builds.

2019-05-03 Thread Noah Misch
Suppress compiler warning in non-SSL, non-assert builds. Jeff Janes, reviewed by Michael Paquier. Discussion: https://postgr.es/m/CAMkU=1x8taZfsbPkv_MsWbTtzibW_yQHXoMhF_DTtm=z2hv...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/726cc4242a2f766c828

pgsql: MSVC: Build ~35% faster by calling dumpbin just once per directo

2019-05-03 Thread Noah Misch
MSVC: Build ~35% faster by calling dumpbin just once per directory. Peifeng Qiu Discussion: https://postgr.es/m/cabmtvjikxqjast0dqd-8katfm8xmyyxo-4dc7+m+fbr8jrt...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/34ff542a71f8e8e768b24d40548dec4be0c70

pgsql: First-draft release notes for 11.3.

2019-05-03 Thread Tom Lane
First-draft release notes for 11.3. As usual, the release notes for other branches will be made by cutting these down, but put them up for community review first. Branch -- REL_11_STABLE Details --- https://git.postgresql.org/pg/commitdiff/8b3bce2017b15e05f000c3c5947653a3e2c5a29f Modifi

pgsql: Correct more obsolete nbtree page split comments.

2019-05-03 Thread Peter Geoghegan
Correct more obsolete nbtree page split comments. Commit 3f342839 corrected obsolete comments about buffer locks at the main _bt_insert_parent() call site, but missed similar obsolete comments above _bt_insert_parent() itself. Both sets of comments were rendered obsolete by commit 40dae7ec537, wh

pgsql: Doc: remove obsolete comment about per-branch documentation.

2019-05-03 Thread Tom Lane
Doc: remove obsolete comment about per-branch documentation. I should have removed this in a0b762626, but forgot. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/8309eae499d6782bfc5e81f4d1cfcbf8e3fc8f5d Modified Files -- doc/src/sgml/release.sgml | 3 +-

pgsql: Remove RelationSetIndexList().

2019-05-03 Thread Tom Lane
Remove RelationSetIndexList(). In the wake of commit f912d7dec, RelationSetIndexList isn't used any more. It was always a horrid wart, so getting rid of it is very nice. We can also convert rd_indexvalid back to a plain boolean. Discussion: https://postgr.es/m/28926.1556664...@sss.pgh.pa.us Bra