pgsql: Fix comment in injection_point.c

2024-11-12 Thread Michael Paquier
Fix comment in injection_point.c InjectionPointEntry->name was described as a hash key, which was fine when introduced in d86d20f0ba79, but it is not now. Oversight in 86db52a5062a, that has changed the way injection points are stored in shared memory from a hash table to an array. Backpatch-thr

pgsql: Fix comment in injection_point.c

2024-11-12 Thread Michael Paquier
Fix comment in injection_point.c InjectionPointEntry->name was described as a hash key, which was fine when introduced in d86d20f0ba79, but it is not now. Oversight in 86db52a5062a, that has changed the way injection points are stored in shared memory from a hash table to an array. Backpatch-thr

pgsql: Fix obsolete nbtree page reuse FSM comment.

2024-11-12 Thread Peter Geoghegan
Fix obsolete nbtree page reuse FSM comment. Oversight in commit d088ba5a. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/3be30d007514d504b1d0554a20527ee5ba7a6cfb Modified Files -- src/backend/access/nbtree/nbtxlog.c | 6 +++--- 1 file changed, 3 inserti

pgsql: Count contrib/bloom index scans in pgstat view.

2024-11-12 Thread Peter Geoghegan
Count contrib/bloom index scans in pgstat view. Maintain the pg_stat_user_indexes.idx_scan pgstat counter during contrib/Bloom index scans. Oversight in commit 9ee014fc, which added the Bloom index contrib module. Author: Masahiro Ikeda Reviewed-By: Peter Geoghegan Discussion: https://postgr.e

pgsql: Count contrib/bloom index scans in pgstat view.

2024-11-12 Thread Peter Geoghegan
Count contrib/bloom index scans in pgstat view. Maintain the pg_stat_user_indexes.idx_scan pgstat counter during contrib/Bloom index scans. Oversight in commit 9ee014fc, which added the Bloom index contrib module. Author: Masahiro Ikeda Reviewed-By: Peter Geoghegan Discussion: https://postgr.e

pgsql: Count contrib/bloom index scans in pgstat view.

2024-11-12 Thread Peter Geoghegan
Count contrib/bloom index scans in pgstat view. Maintain the pg_stat_user_indexes.idx_scan pgstat counter during contrib/Bloom index scans. Oversight in commit 9ee014fc, which added the Bloom index contrib module. Author: Masahiro Ikeda Reviewed-By: Peter Geoghegan Discussion: https://postgr.e

pgsql: Count contrib/bloom index scans in pgstat view.

2024-11-12 Thread Peter Geoghegan
Count contrib/bloom index scans in pgstat view. Maintain the pg_stat_user_indexes.idx_scan pgstat counter during contrib/Bloom index scans. Oversight in commit 9ee014fc, which added the Bloom index contrib module. Author: Masahiro Ikeda Reviewed-By: Peter Geoghegan Discussion: https://postgr.e

pgsql: Count contrib/bloom index scans in pgstat view.

2024-11-12 Thread Peter Geoghegan
Count contrib/bloom index scans in pgstat view. Maintain the pg_stat_user_indexes.idx_scan pgstat counter during contrib/Bloom index scans. Oversight in commit 9ee014fc, which added the Bloom index contrib module. Author: Masahiro Ikeda Reviewed-By: Peter Geoghegan Discussion: https://postgr.e

pgsql: Count contrib/bloom index scans in pgstat view.

2024-11-12 Thread Peter Geoghegan
Count contrib/bloom index scans in pgstat view. Maintain the pg_stat_user_indexes.idx_scan pgstat counter during contrib/Bloom index scans. Oversight in commit 9ee014fc, which added the Bloom index contrib module. Author: Masahiro Ikeda Reviewed-By: Peter Geoghegan Discussion: https://postgr.e

pgsql: Tag refs/tags/REL_16_5 was created

2024-11-12 Thread noreply
Tag refs/tags/REL_16_5 was created.

pgsql: Tag refs/tags/REL_13_17 was created

2024-11-12 Thread noreply
Tag refs/tags/REL_13_17 was created.

pgsql: Tag refs/tags/REL_17_1 was created

2024-11-12 Thread noreply
Tag refs/tags/REL_17_1 was created.

pgsql: Tag refs/tags/REL_14_14 was created

2024-11-12 Thread noreply
Tag refs/tags/REL_14_14 was created.

pgsql: Tag refs/tags/REL_12_21 was created

2024-11-12 Thread noreply
Tag refs/tags/REL_12_21 was created.

pgsql: Tag refs/tags/REL_15_9 was created

2024-11-12 Thread noreply
Tag refs/tags/REL_15_9 was created.

pgsql: Add missing word in comment

2024-11-12 Thread Amit Langote
Add missing word in comment Discussion: https://postgr.es/m/CA+HiwqFgdp8=0_gi+du0fpwzbg7qy3kz_c1wj1devzxc4bc...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/bfeeb065ea2c870cf4d9dfcd552d23d72432e692 Modified Files -- src/include/storag

pgsql: Silence compilers about extractNotNullColumn()

2024-11-12 Thread Álvaro Herrera
Silence compilers about extractNotNullColumn() Multiple buildfarm animals warn that a newly added Assert() is impossible to fail; remove it to avoid the noise. While at it, use direct assignment to obtain the value we need, avoiding an unnecessary memcpy(). (I decided to remove the "pfree" call

pgsql: pg_freespacemap: Use SQL-standard function bodies

2024-11-12 Thread Michael Paquier
pg_freespacemap: Use SQL-standard function bodies 72a5b1fc8804 was the piece missing for the conversion of this module. pg_freespace is bumped to 1.3, with its function pg_freespace(regclass) converted to this new style. There are other modules in the tree that need a similar treatment; these wil