pgsql: Fix overly generic name in with.sql test.

2021-12-29 Thread Thomas Munro
Fix overly generic name in with.sql test. Avoid the name "test". In the 10 branch, this could clash with alter_table.sql, as seen in the build farm. That other instance was already renamed in later branches by commit 2cf8c7aa, but it's good to future-proof the name here too. Back-patch to 10.

pgsql: Fix overly generic name in with.sql test.

2021-12-29 Thread Thomas Munro
Fix overly generic name in with.sql test. Avoid the name "test". In the 10 branch, this could clash with alter_table.sql, as seen in the build farm. That other instance was already renamed in later branches by commit 2cf8c7aa, but it's good to future-proof the name here too. Back-patch to 10.

pgsql: Fix overly generic name in with.sql test.

2021-12-29 Thread Thomas Munro
Fix overly generic name in with.sql test. Avoid the name "test". In the 10 branch, this could clash with alter_table.sql, as seen in the build farm. That other instance was already renamed in later branches by commit 2cf8c7aa, but it's good to future-proof the name here too. Back-patch to 10.

pgsql: Fix overly generic name in with.sql test.

2021-12-29 Thread Thomas Munro
Fix overly generic name in with.sql test. Avoid the name "test". In the 10 branch, this could clash with alter_table.sql, as seen in the build farm. That other instance was already renamed in later branches by commit 2cf8c7aa, but it's good to future-proof the name here too. Back-patch to 10.

pgsql: Fix overly generic name in with.sql test.

2021-12-29 Thread Thomas Munro
Fix overly generic name in with.sql test. Avoid the name "test". In the 10 branch, this could clash with alter_table.sql, as seen in the build farm. That other instance was already renamed in later branches by commit 2cf8c7aa, but it's good to future-proof the name here too. Back-patch to 10.

pgsql: Fix overly generic name in with.sql test.

2021-12-29 Thread Thomas Munro
Fix overly generic name in with.sql test. Avoid the name "test". In the 10 branch, this could clash with alter_table.sql, as seen in the build farm. That other instance was already renamed in later branches by commit 2cf8c7aa, but it's good to future-proof the name here too. Back-patch to 10.

pgsql: Fix issues in pgarch's new directory-scanning logic.

2021-12-29 Thread Tom Lane
Fix issues in pgarch's new directory-scanning logic. The arch_filenames[] array elements were one byte too small, so that a maximum-length filename would get corrupted if another entry were made after it. (Noted by Thomas Munro, fix by Nathan Bossart.) Move these arrays into a palloc'd struct, s

pgsql: Fix incorrect format placeholders

2021-12-29 Thread Peter Eisentraut
Fix incorrect format placeholders Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/113fa3945f8969346d6a87b9a56d54afa3d34687 Modified Files -- src/backend/access/transam/xlog.c | 4 ++-- src/backend/access/transam/xlogutils.c | 4 ++-- src/bin/pg_wald