pgsql: Further cosmetic review of hashfn_unstable.h

2024-02-05 Thread John Naylor
Further cosmetic review of hashfn_unstable.h In follow-up to e97b672c8, * Flesh out comments explaining the incremental interface * Clarify detection of zero bytes when hashing aligned C strings The latter was suggested and reviewed by Jeff Davis Discussion:

pgsql: Simplify initialization of incremental hash state

2024-02-05 Thread John Naylor
Simplify initialization of incremental hash state The standalone functions fasthash{32,64} use length for two purposes: how many bytes to hash, and how to perturb the internal seed. Developers using the incremental interface may not know the length ahead of time (e.g. for C strings). In this

pgsql: doc: Spell I/O consistently

2024-02-05 Thread Michael Paquier
doc: Spell I/O consistently The pg_stat_io and pg_stat_copy_progress view docs spelled "I/O" as "IO" or even "io" in some places when not referring to literal names or string values. Author: Dagfinn Ilmari Mannsåker Discussion: https://postgr.es/m/87fry6lx5s@wibble.ilmari.org Branch --

pgsql: Stamp 12.18.

2024-02-05 Thread Tom Lane
Stamp 12.18. Branch -- REL_12_STABLE Details --- https://git.postgresql.org/pg/commitdiff/3ba17930941ea629b2ffb5cd252f3055d4d4a9a6 Modified Files -- configure| 18 +- configure.in | 2 +-

pgsql: Stamp 13.14.

2024-02-05 Thread Tom Lane
Stamp 13.14. Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/b3b2bf3b9cc1f31170d3b4e21cb6ac0cf24bf90a Modified Files -- configure| 18 +- configure.in | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-)

pgsql: Stamp 14.11.

2024-02-05 Thread Tom Lane
Stamp 14.11. Branch -- REL_14_STABLE Details --- https://git.postgresql.org/pg/commitdiff/d1a2a93766b0a27eb4ffecdb63ed3879088dbfbe Modified Files -- configure| 18 +- configure.ac | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-)

pgsql: Stamp 15.6.

2024-02-05 Thread Tom Lane
Stamp 15.6. Branch -- REL_15_STABLE Details --- https://git.postgresql.org/pg/commitdiff/496a1dc44bf1261053da9b3f7e430769754298b4 Modified Files -- configure| 18 +- configure.ac | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-)

pgsql: Stamp 16.2.

2024-02-05 Thread Tom Lane
Stamp 16.2. Branch -- REL_16_STABLE Details --- https://git.postgresql.org/pg/commitdiff/b78fa8547d02fc72ace679fb4d5289dccdbfc781 Modified Files -- configure| 18 +- configure.ac | 2 +- meson.build | 2 +- 3 files changed, 11 insertions(+), 11

Re: pgsql: Generate syscache info from catalog files

2024-02-05 Thread Peter Eisentraut
On 05.02.24 13:48, Aleksander Alekseev wrote: Hi, I have found that the files are not listed in the clean target in src/include/Makefile. That might explain it, but it's gotta be fixed anyway. I'll go ahead with that. Looks like that made guaibasaurus happy, but I'm still mystified as to

pgsql: Fix meson installation of new generated files

2024-02-05 Thread Peter Eisentraut
Fix meson installation of new generated files Fix for 9b1a6f50b9: We want to install catalog/syscache_ids.h but not catalog/syscache_info.h. The meson code has this backwards. The makefiles are ok. Reported-by: Aleksander Alekseev Discussion:

pgsql: Translation updates

2024-02-05 Thread Peter Eisentraut
Translation updates Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 3d5a5afaec3fca7c19b107ca07a73145373fcd4a Branch -- REL_14_STABLE Details --- https://git.postgresql.org/pg/commitdiff/8eda85bbc239dc4f06ebaaff30031ea762370705 Modified Files

pgsql: Translation updates

2024-02-05 Thread Peter Eisentraut
Translation updates Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 7465ae7935588bbbafa9aac1c2b8c5863de50cbb Branch -- REL_16_STABLE Details --- https://git.postgresql.org/pg/commitdiff/246d16eb8738298c929b6c2ca21f1192d896c89a Modified Files

pgsql: Translation updates

2024-02-05 Thread Peter Eisentraut
Translation updates Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: b00179c98c571c2c717c2d9aff0fb4becbb9d298 Branch -- REL_15_STABLE Details --- https://git.postgresql.org/pg/commitdiff/5b5483f1fd85dd0c6af7908ac442c6f0f2f60382 Modified Files

pgsql: Translation updates

2024-02-05 Thread Peter Eisentraut
Translation updates Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 56407782e741a8e3f815614a0516a3b0f5ac6c0d Branch -- REL_13_STABLE Details --- https://git.postgresql.org/pg/commitdiff/848745cfb52e5898124014f41dcce1d691a07921 Modified Files

pgsql: Translation updates

2024-02-05 Thread Peter Eisentraut
Translation updates Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 25eaf29cbb9ee022c0e5f7a4dc4e217bc8a40dfb Branch -- REL_12_STABLE Details --- https://git.postgresql.org/pg/commitdiff/8727cd5efb1ba6abd21de01e8c2a6839f0f853a7 Modified Files

Re: pgsql: Generate syscache info from catalog files

2024-02-05 Thread Aleksander Alekseev
Hi, > > I have found that the files are not listed in the clean target in > > src/include/Makefile. That might explain it, but it's gotta be fixed > > anyway. I'll go ahead with that. > > Looks like that made guaibasaurus happy, but I'm still mystified > as to what was wrong and why it didn't

pgsql: Fix assertion if index is dropped during REFRESH CONCURRENTLY

2024-02-05 Thread Heikki Linnakangas
Fix assertion if index is dropped during REFRESH CONCURRENTLY When assertions are disabled, the built SQL statement is invalid and you get a "syntax error". So this isn't a serious problem, but let's avoid the assertion failure. Backpatch to all supported versions. Reviewed-by: Noah Misch

pgsql: Fix assertion if index is dropped during REFRESH CONCURRENTLY

2024-02-05 Thread Heikki Linnakangas
Fix assertion if index is dropped during REFRESH CONCURRENTLY When assertions are disabled, the built SQL statement is invalid and you get a "syntax error". So this isn't a serious problem, but let's avoid the assertion failure. Backpatch to all supported versions. Reviewed-by: Noah Misch

pgsql: Fix assertion if index is dropped during REFRESH CONCURRENTLY

2024-02-05 Thread Heikki Linnakangas
Fix assertion if index is dropped during REFRESH CONCURRENTLY When assertions are disabled, the built SQL statement is invalid and you get a "syntax error". So this isn't a serious problem, but let's avoid the assertion failure. Backpatch to all supported versions. Reviewed-by: Noah Misch

pgsql: Fix assertion if index is dropped during REFRESH CONCURRENTLY

2024-02-05 Thread Heikki Linnakangas
Fix assertion if index is dropped during REFRESH CONCURRENTLY When assertions are disabled, the built SQL statement is invalid and you get a "syntax error". So this isn't a serious problem, but let's avoid the assertion failure. Backpatch to all supported versions. Reviewed-by: Noah Misch

pgsql: Fix assertion if index is dropped during REFRESH CONCURRENTLY

2024-02-05 Thread Heikki Linnakangas
Fix assertion if index is dropped during REFRESH CONCURRENTLY When assertions are disabled, the built SQL statement is invalid and you get a "syntax error". So this isn't a serious problem, but let's avoid the assertion failure. Backpatch to all supported versions. Reviewed-by: Noah Misch

pgsql: Fix assertion if index is dropped during REFRESH CONCURRENTLY

2024-02-05 Thread Heikki Linnakangas
Fix assertion if index is dropped during REFRESH CONCURRENTLY When assertions are disabled, the built SQL statement is invalid and you get a "syntax error". So this isn't a serious problem, but let's avoid the assertion failure. Backpatch to all supported versions. Reviewed-by: Noah Misch