pgsql: Update list of acknowledgments in release notes
Update list of acknowledgments in release notes Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/f6727f29d52072bd0e87fbc9ed7af0d880db0d5c Modified Files -- doc/src/sgml/release-13.sgml | 6 ++ 1 file changed, 6 insertions(+)
pgsql: Translation updates
Translation updates Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: cdd5cffbddac2869f3eed0a6a37cba71ce2332cd Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/d83268ae10cdeb2aa88e32286e94a8a8f59653a0 Modified Files -- src/backend/po/es.po | 21340 +++-- src/backend/po/fr.po | 15016 ++ src/backend/po/ru.po | 461 +- src/backend/po/sv.po | 288 +- src/bin/pg_dump/po/es.po |14 +- src/bin/pg_dump/po/fr.po | 1120 +- src/bin/pg_rewind/po/es.po |61 +- src/bin/pg_rewind/po/fr.po | 508 +- src/bin/pg_rewind/po/ru.po |12 +- src/bin/pg_rewind/po/sv.po | 124 +- src/bin/pg_upgrade/po/es.po |79 +- src/bin/pg_verifybackup/po/es.po |34 +- src/bin/pg_verifybackup/po/fr.po |82 +- src/bin/pg_verifybackup/po/ru.po |24 +- src/bin/pg_verifybackup/po/sv.po |88 +- src/bin/pg_waldump/po/es.po |16 +- src/bin/psql/po/es.po|90 +- src/bin/psql/po/fr.po| 3590 --- src/bin/psql/po/ru.po| 452 +- src/bin/scripts/po/es.po |47 +- src/bin/scripts/po/fr.po | 239 +- src/bin/scripts/po/ru.po | 8 +- src/bin/scripts/po/sv.po | 8 +- src/interfaces/libpq/po/fr.po| 361 +- src/pl/plpgsql/src/po/es.po | 4 +- src/pl/plpgsql/src/po/fr.po | 386 +- 26 files changed, 22759 insertions(+), 21693 deletions(-)
pgsql: Fix checksum calculation in the new sorting GiST build.
Fix checksum calculation in the new sorting GiST build. Since we're bypassing the buffer manager, we need to call PageSetChecksumInplace() directly. As reported by Justin Pryzby. In the passing, add RelationOpenSmgr() calls before all smgrwrite() and smgrextend() calls. Tom added one before the first smgrextend() call in commit c2bb287025, which seems to be enough, but let's play it safe and do it before each one. That's how it's done in the similar code in nbtsort.c, too. Discussion: https://www.postgresql.org/message-id/20200920224446.gf30...@telsasoft.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/c47a240fe6db8293e2de1565233faee40afa64b6 Modified Files -- src/backend/access/gist/gistbuild.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-)
pgsql: Standardize order of use strict and use warnings in Perl code
Standardize order of use strict and use warnings in Perl code The standard order in PostgreSQL and other code is use strict first, but some code was uselessly inconsistent about this. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/80fc96eceb817d89cdd11c02c8ab913c8d060a3e Modified Files -- doc/src/sgml/generate-errcodes-table.pl | 2 +- src/backend/parser/check_keywords.pl | 2 +- src/backend/storage/lmgr/generate-lwlocknames.pl | 2 +- src/backend/utils/generate-errcodes.pl | 2 +- src/pl/plpgsql/src/generate-plerrcodes.pl| 2 +- src/pl/plpython/generate-spiexceptions.pl| 2 +- src/pl/tcl/generate-pltclerrcodes.pl | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-)
pgsql: Copy editing: fix a bunch of misspellings and poor wording.
Copy editing: fix a bunch of misspellings and poor wording. 99% of this is docs, but also a couple of comments. No code changes. Justin Pryzby Discussion: https://postgr.es/m/20200919175804.ge30...@telsasoft.com Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/e62c5ea22c12f63d8d5ca3b228a458dfc10ae314 Modified Files -- doc/src/sgml/btree.sgml | 2 +- doc/src/sgml/catalogs.sgml | 3 ++- doc/src/sgml/config.sgml | 22 +++--- doc/src/sgml/ddl.sgml| 2 +- doc/src/sgml/func.sgml | 4 ++-- doc/src/sgml/libpq.sgml | 2 +- doc/src/sgml/logical-replication.sgml| 2 +- doc/src/sgml/monitoring.sgml | 4 ++-- doc/src/sgml/protocol.sgml | 4 ++-- doc/src/sgml/ref/alter_statistics.sgml | 3 ++- doc/src/sgml/ref/alter_table.sgml| 2 +- doc/src/sgml/ref/pg_basebackup.sgml | 4 ++-- doc/src/sgml/ref/pg_dump.sgml| 2 +- doc/src/sgml/ref/pg_rewind.sgml | 4 ++-- doc/src/sgml/ref/pgbench.sgml| 4 ++-- doc/src/sgml/ref/reindex.sgml| 2 +- doc/src/sgml/ref/reindexdb.sgml | 4 ++-- doc/src/sgml/ref/vacuumdb.sgml | 4 ++-- doc/src/sgml/runtime.sgml| 2 +- doc/src/sgml/sources.sgml| 2 +- src/backend/access/gin/README| 2 +- src/backend/utils/adt/jsonpath_exec.c| 2 +- src/test/regress/expected/partition_join.out | 2 +- src/test/regress/sql/partition_join.sql | 2 +- 24 files changed, 44 insertions(+), 42 deletions(-)
pgsql: Copy editing: fix a bunch of misspellings and poor wording.
Copy editing: fix a bunch of misspellings and poor wording. 99% of this is docs, but also a couple of comments. No code changes. Justin Pryzby Discussion: https://postgr.es/m/20200919175804.ge30...@telsasoft.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/9436041ed848debb3d64fb5fbff6cdb35bc46d04 Modified Files -- doc/src/sgml/btree.sgml | 2 +- doc/src/sgml/catalogs.sgml | 3 ++- doc/src/sgml/config.sgml | 22 +++--- doc/src/sgml/ddl.sgml| 2 +- doc/src/sgml/func.sgml | 4 ++-- doc/src/sgml/libpq.sgml | 2 +- doc/src/sgml/logical-replication.sgml| 2 +- doc/src/sgml/monitoring.sgml | 4 ++-- doc/src/sgml/protocol.sgml | 4 ++-- doc/src/sgml/ref/alter_statistics.sgml | 3 ++- doc/src/sgml/ref/alter_table.sgml| 2 +- doc/src/sgml/ref/pg_basebackup.sgml | 4 ++-- doc/src/sgml/ref/pg_dump.sgml| 2 +- doc/src/sgml/ref/pg_rewind.sgml | 4 ++-- doc/src/sgml/ref/pgbench.sgml| 4 ++-- doc/src/sgml/ref/reindex.sgml| 2 +- doc/src/sgml/ref/reindexdb.sgml | 4 ++-- doc/src/sgml/ref/vacuumdb.sgml | 4 ++-- doc/src/sgml/runtime.sgml| 2 +- doc/src/sgml/sources.sgml| 2 +- src/backend/access/gin/README| 2 +- src/backend/utils/adt/jsonpath_exec.c| 2 +- src/test/regress/expected/partition_join.out | 2 +- src/test/regress/sql/partition_join.sql | 2 +- 24 files changed, 44 insertions(+), 42 deletions(-)
pgsql: Doc: improve v13 release note item about autovacuum and INSERTs.
Doc: improve v13 release note item about autovacuum and INSERTs. The previous text was confusing, per off-list discussion with Bruce Momjian. Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/4406364e2bf421459be7bd21503da093d910e0c3 Modified Files -- doc/src/sgml/release-13.sgml | 28 1 file changed, 20 insertions(+), 8 deletions(-)
pgsql: Fix a few more generator scripts to produce pgindent-clean outpu
Fix a few more generator scripts to produce pgindent-clean output. This completes the project of making all our derived files be pgindent-clean (or else explicitly excluded from indentation), so that no surprises result when running pgindent in a built-out development tree. Discussion: https://postgr.es/m/79ed5348-be7a-b647-dd40-742207186...@2ndquadrant.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/f859c2ffa01d83a079652ce7d953cd61eb3d7171 Modified Files -- src/backend/utils/sort/gen_qsort_tuple.pl | 7 --- src/pl/plpgsql/src/generate-plerrcodes.pl | 2 +- src/pl/plpython/generate-spiexceptions.pl | 4 ++-- src/pl/tcl/generate-pltclerrcodes.pl | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-)
pgsql: Stamp 13.0.
Stamp 13.0. Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/29be9983a64c011eac0b9ee29895cce71e15ea77 Modified Files -- configure| 18 +- configure.in | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-)