pgsql: doc PG 17 relnotes: add item about libpq large data transfers

2024-05-13 Thread Bruce Momjian
doc PG 17 relnotes: add item about libpq large data transfers Reported-by: Jelte Fennema-Nio Discussion: https://postgr.es/m/cageczqtz5auqlel6dald2hu2fxs_losh4kedndj1fwthsb_...@mail.gmail.com Reviewed-by: Joe Conway Backpatch-through: master Branch -- master Details ---

pgsql: Revert "Temporarily install debugging in partition_prune test"

2024-05-13 Thread David Rowley
Revert "Temporarily install debugging in partition_prune test" 1db689715 added debugging output to the partition_prune regression test to help us figure out why buildfarm member Parula was occasionally failing. We've not seen any failures in around 4 weeks and the best guess as to what the

pgsql: doc PG 17 relnotes: add psql connection control-C item

2024-05-13 Thread Bruce Momjian
doc PG 17 relnotes: add psql connection control-C item Reported-by: Jelte Fennema-Nio Discussion: https://postgr.es/m/cageczqtz5auqlel6dald2hu2fxs_losh4kedndj1fwthsb_...@mail.gmail.com Reviewed-by: Tom Lane Backpatch-through: master Branch -- master Details ---

pgsql: Remove COMMAND_TAG_NEXTTAG from enum CommandTag.

2024-05-13 Thread Tom Lane
Remove COMMAND_TAG_NEXTTAG from enum CommandTag. COMMAND_TAG_NEXTTAG isn't really a valid command tag. Declaring it as if it were one prompts complaints from Coverity and perhaps other static analyzers. Our only use of it is in an entirely-unnecessary array sizing declaration, so let's just

pgsql: Fix typo

2024-05-13 Thread Alvaro Herrera
Fix typo Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/11c1984cccad1d41f461d3bb00f9e662332d002b Modified Files -- doc/src/sgml/catalogs.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix regression tests conflict in 3ca43dbbb6

2024-05-13 Thread Alexander Korotkov
Fix regression tests conflict in 3ca43dbbb6 3ca43dbbb6 adds regression tests with permission checks. The conflict has been observed at buildfarm member piculet. This commit fixes the conflict in the following way. 1. partition_split.sql now uses role names regress_partition_split_alice and

pgsql: Revert structural changes to not-null constraints

2024-05-13 Thread Alvaro Herrera
Revert structural changes to not-null constraints There are some problems with the new way to handle these constraints that were detected at the last minute, and require fixes that appear too invasive to be doing this late in the cycle. Revert this (again) for now, we'll try again with these

pgsql: Fix test case to do what it intends to

2024-05-13 Thread Alvaro Herrera
Fix test case to do what it intends to This test case intended to fail because setting a column as generated to the partitioned table while leaving the partition alone is not allowed; but instead failed because of a discrepancy of not-null constraint. Fix this by adding the not-null constraint