pgsql: Fix whitespace

2018-05-17 Thread Peter Eisentraut
Fix whitespace Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/6b30d1386fa37d8ae45e2d30e22771244afd13c3 Modified Files -- src/bin/pg_basebackup/streamutil.c | 2 +- src/test/isolation/specs/predicate-gin.spec | 1 - src/test/isolation/specs/pred

pgsql: Message wording and pluralization improvements

2018-05-17 Thread Peter Eisentraut
Message wording and pluralization improvements Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/9effb63e0dd12b0704cd8e11106fe08ff5c9d685 Modified Files -- src/backend/access/transam/xlog.c | 6 -- src/backend/bootstrap/bootstrap.c | 2 +-

pgsql: doc: fix description of backward_scan

2018-05-17 Thread Andrew Gierth
doc: fix description of backward_scan The description of the index property backward_scan was incorrect and misleading; rectify. Backpatch to 9.6 where the amutils functionality was introduced. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/93f6c6328dcf74d1e42162e

pgsql: doc: fix description of backward_scan

2018-05-17 Thread Andrew Gierth
doc: fix description of backward_scan The description of the index property backward_scan was incorrect and misleading; rectify. Backpatch to 9.6 where the amutils functionality was introduced. Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/4a9b44d3c075fe73

pgsql: doc: fix description of backward_scan

2018-05-17 Thread Andrew Gierth
doc: fix description of backward_scan The description of the index property backward_scan was incorrect and misleading; rectify. Backpatch to 9.6 where the amutils functionality was introduced. Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/ee68541ce60dd585

pgsql: doc: fix PG 11 attribution

2018-05-17 Thread Bruce Momjian
doc: fix PG 11 attribution Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/91ff29f036349f07b4b48856667735e51ef795a1 Modified Files -- doc/src/sgml/release-11.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Make numeric power() handle NaNs according to the modern POSIX s

2018-05-17 Thread Tom Lane
Make numeric power() handle NaNs according to the modern POSIX spec. In commit 6bdf1303b, we ensured that power()/^ for float8 would honor the NaN behaviors specified by POSIX standards released in this century, ie NaN ^ 0 = 1 and 1 ^ NaN = 1. However, numeric_power() was not touched and continue