[COMMITTERS] pgsql: Generate pg_basebackup temporary slot name using backend pid

2017-05-31 Thread Magnus Hagander
Generate pg_basebackup temporary slot name using backend pid Using the client pid can easily be non-unique when used on different hosts. Using the backend pid should be guaranteed unique, since the temporary slot gets removed when the client disconnects so it will be gone even if the pid is renewe

[COMMITTERS] pgsql: Restore accidentally-removed line.

2017-05-31 Thread Robert Haas
Restore accidentally-removed line. Commit 88e66d193fbaf756b3cc9bf94cad116aacbb355b is to blame. Masahiko Sawada Discussion: http://postgr.es/m/cad21aoaxeb7o4hgg+efs8jt_sxpr4doah5c5s-z5worlstb...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/81457

[COMMITTERS] pgsql: doc: Add another migration item to release notes

2017-05-31 Thread Peter Eisentraut
doc: Add another migration item to release notes Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/3e6d2fabccef5ed602cd248bfbedf4dc9a57eb09 Modified Files -- doc/src/sgml/release-10.sgml | 20 1 file changed, 20 insertions(+) -- Sent

[COMMITTERS] pgsql: Avoid -Wconversion warnings from direct use of GET_n_BYTES macro

2017-05-31 Thread Tom Lane
Avoid -Wconversion warnings from direct use of GET_n_BYTES macros. The GET/SET_n_BYTES macros are meant to be infrastructure for the DatumGetFoo/FooGetDatum macros, which include a cast to the intended target type. Using them directly without a cast, as DatumGetFloat4 and friends previously did,