pgsql: Clarify use of "statistics objects" in the code

2021-09-28 Thread Michael Paquier
Clarify use of "statistics objects" in the code The code inconsistently used "statistic object" or "statistics" where the correct term, as discussed, is actually "statistics object". This improves the state of the code to be more consistent. While on it, fix an incorrect error message introduced

pgsql: Clarify use of "statistics objects" in the code

2021-09-28 Thread Michael Paquier
Clarify use of "statistics objects" in the code The code inconsistently used "statistic object" or "statistics" where the correct term, as discussed, is actually "statistics object". This improves the state of the code to be more consistent. While on it, fix an incorrect error message introduced

pgsql: Fix incorrect format placeholder

2021-09-28 Thread Peter Eisentraut
Fix incorrect format placeholder Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/0b947c3101d1d05c55531731d6b778f82cb21350 Modified Files -- src/include/lib/simplehash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: doc: Fix some typos and markups

2021-09-28 Thread Michael Paquier
doc: Fix some typos and markups Author: Ekaterina Kiryanova Discussion: https://postgr.es/m/8a14e78f-6991-7a6e-4711-fe376635f...@postgrespro.ru Backpatch-through: 14 Branch -- REL_14_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2a27dbaeb9088718baa25bc97f2e049e063412db Mo

pgsql: doc: Fix some typos and markups

2021-09-28 Thread Michael Paquier
doc: Fix some typos and markups Author: Ekaterina Kiryanova Discussion: https://postgr.es/m/8a14e78f-6991-7a6e-4711-fe376635f...@postgrespro.ru Backpatch-through: 14 Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/c8dd2cb49405d2a39a714bd5adc31d39b8372a4e Modified

pgsql: Refactor output file handling when forking syslogger under EXEC_

2021-09-28 Thread Michael Paquier
Refactor output file handling when forking syslogger under EXEC_BACKEND A forked logging collector in EXEC_BACKEND builds passes down file descriptors (or HANDLEs in WIN32) through a command for files to be reopened (for stderr and csvlog). Some of its logic was duplicated, and this commit refact

pgsql: Tag refs/tags/REL_14_0 was created

2021-09-28 Thread noreply
Tag refs/tags/REL_14_0 was created.

pgsql: Fix instability in contrib/bloom TAP tests.

2021-09-28 Thread Tom Lane
Fix instability in contrib/bloom TAP tests. It turns out that the instability complained of in commit d3c09b9b1 has an embarrassingly simple explanation. The test script waits for the standby to flush incoming WAL to disk, but it should wait for the WAL to be replayed, since we are testing for th

pgsql: Fix instability in contrib/bloom TAP tests.

2021-09-28 Thread Tom Lane
Fix instability in contrib/bloom TAP tests. It turns out that the instability complained of in commit d3c09b9b1 has an embarrassingly simple explanation. The test script waits for the standby to flush incoming WAL to disk, but it should wait for the WAL to be replayed, since we are testing for th

pgsql: Fix instability in contrib/bloom TAP tests.

2021-09-28 Thread Tom Lane
Fix instability in contrib/bloom TAP tests. It turns out that the instability complained of in commit d3c09b9b1 has an embarrassingly simple explanation. The test script waits for the standby to flush incoming WAL to disk, but it should wait for the WAL to be replayed, since we are testing for th

pgsql: Fix instability in contrib/bloom TAP tests.

2021-09-28 Thread Tom Lane
Fix instability in contrib/bloom TAP tests. It turns out that the instability complained of in commit d3c09b9b1 has an embarrassingly simple explanation. The test script waits for the standby to flush incoming WAL to disk, but it should wait for the WAL to be replayed, since we are testing for th

pgsql: doc: adjust attributions in PG 14 release notes

2021-09-28 Thread Bruce Momjian
doc: adjust attributions in PG 14 release notes Backpatch-through: 14 only Branch -- REL_14_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2f283d036da8e4c74fd07022cb685efee4e345bd Modified Files -- doc/src/sgml/release-14.sgml | 7 --- 1 file changed, 4 inse

pgsql: Properly schema-prefix reference to pg_catalog.pg_get_statistics

2021-09-28 Thread Magnus Hagander
Properly schema-prefix reference to pg_catalog.pg_get_statisticsobjdef_columns Author: Tatsuro Yamada Backpatch-through: 14 Discussion: https://www.postgresql.org/message-id/7ad8cd13-db5b-5cf6-8561-dccad1a93...@nttcom.co.jp Branch -- REL_14_STABLE Details --- https://git.postgresql.org/

pgsql: Properly schema-prefix reference to pg_catalog.pg_get_statistics

2021-09-28 Thread Magnus Hagander
Properly schema-prefix reference to pg_catalog.pg_get_statisticsobjdef_columns Author: Tatsuro Yamada Backpatch-through: 14 Discussion: https://www.postgresql.org/message-id/7ad8cd13-db5b-5cf6-8561-dccad1a93...@nttcom.co.jp Branch -- master Details --- https://git.postgresql.org/pg/comm

pgsql: Support amcheck of sequences

2021-09-28 Thread Peter Eisentraut
Support amcheck of sequences Sequences were left out of the list of relation kinds that verify_heapam knew how to check, though it is fairly trivial to allow them. Doing that, and while at it, updating pg_amcheck to include sequences in relations matched by table and relation patterns. Author: M