pgsql: Add missing pg_basebackup TAP test for meson.

2023-06-15 Thread Masahiko Sawada
Add missing pg_basebackup TAP test for meson. 011_in_place_tablespace was missing from the list of pg_basebackup tests to run under meson, so add it. Oversight in 363e8f9115. Discussion: https://postgr.es/m/CAD21AoDTh1A8bvNBF3LQNQg=27xtpsgvpt+4_yyej6p4zv8...@mail.gmail.com Branch --

pgsql: Fix typo in comment.

2023-06-15 Thread Amit Langote
Fix typo in comment. Back-patch down to 11. Author: Sho Kato () Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com Branch -- REL_11_STABLE Details ---

pgsql: Fix typo in comment.

2023-06-15 Thread Amit Langote
Fix typo in comment. Back-patch down to 11. Author: Sho Kato () Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com Branch -- REL_12_STABLE Details ---

pgsql: Fix typo in comment.

2023-06-15 Thread Amit Langote
Fix typo in comment. Back-patch down to 11. Author: Sho Kato () Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com Branch -- REL_13_STABLE Details ---

pgsql: Fix typo in comment.

2023-06-15 Thread Amit Langote
Fix typo in comment. Back-patch down to 11. Author: Sho Kato () Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com Branch -- REL_14_STABLE Details ---

pgsql: Fix typo in comment.

2023-06-15 Thread Amit Langote
Fix typo in comment. Back-patch down to 11. Author: Sho Kato () Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com Branch -- master Details ---

pgsql: Fix typo in comment.

2023-06-15 Thread Amit Langote
Fix typo in comment. Back-patch down to 11. Author: Sho Kato () Discussion: https://postgr.es/m/TYCPR01MB68499042A33BC32241193AAF9F5BA%40TYCPR01MB6849.jpnprd01.prod.outlook.com Branch -- REL_15_STABLE Details ---

pgsql: When removing a left join, clean out references in EquivalenceCl

2023-06-15 Thread Tom Lane
When removing a left join, clean out references in EquivalenceClasses. Since commit b448f1c8d, we've been able to remove left joins (that are otherwise removable) even when they are underneath other left joins, a case that was previously prevented by a delay_upper_joins check. This is a clear

pgsql: Remove outdated reference to a removed file

2023-06-15 Thread Amit Langote
Remove outdated reference to a removed file parse_jsontable.c was removed as part of 2f2b18bd3f55, though its mention in src/backend/parser/README was not. Fix that. Discussion: https://postgr.es/m/CA%2BHiwqHDzw8AP8p_dEkFr0xg458ZTf58zbivAHhK4UeNrx9Tdg%40mail.gmail.com Branch -- master

pgsql: libpq: Fix up some error message coding

2023-06-15 Thread Peter Eisentraut
libpq: Fix up some error message coding This applies the new error message API from commit 0873b2d354 to the changes introduced by bbf9c282ce. The latter was committed shortly after the former, so it probably didn't get the news in time. Branch -- master Details ---

pgsql: Add missing subscription TAP test for meson

2023-06-15 Thread Michael Paquier
Add missing subscription TAP test for meson 033_run_as_table_owner was missing from the list of subscription tests to run under meson, so add it. Oversight in 4826759. Author: Hayato Kuroda Discussion:

pgsql: Replace GUC_UNIT_MEMORY|GUC_UNIT_TIME with GUC_UNIT.

2023-06-15 Thread Masahiko Sawada
Replace GUC_UNIT_MEMORY|GUC_UNIT_TIME with GUC_UNIT. We used (GUC_UNIT_MEMORY | GUC_UNIT_TIME) instead of GUC_UNIT some places but we already define it in guc.h. This commit replaces them with GUC_UNIT for better consistency with their surrounding code. Author: Japin Li Reviewed-by: Richard Guo,