pgsql: Add missing index_insert_cleanup calls

From: Tomas Vondra <tomas(dot)vondra(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add missing index_insert_cleanup calls
Date: 2024-04-19 14:09:28
Message-ID: E1rxovf-002qLy-Ry@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add missing index_insert_cleanup calls

The optimization for inserts into BRIN indexes added by c1ec02be1d79
relies on a cache that needs to be explicitly released after calling
index_insert(). The commit however failed to invoke the cleanup in
validate_index(), which calls index_insert() indirectly through
table_index_validate_scan().

After inspecting index_insert() callers, it seems unique_key_recheck()
is missing the call too.

Fixed by adding the two missing index_insert_cleanup() calls.

The commit does two additional improvements. The aminsertcleanup()
signature is modified to have the index as the first argument, to make
it more like the other AM callbacks. And the aminsertcleanup() callback
is invoked even if the ii_AmCache is NULL, so that it can decide if the
cleanup is necessary.

Author: Alvaro Herrera, Tomas Vondra
Reported-by: Alexander Lakhin
Discussion: https://postgr.es/m/202401091043.e3nrqiad6gb7@alvherre.pgsql

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/41d2c6f952edc4841763d05296b65f3c0edad4f2

Modified Files
--------------
doc/src/sgml/indexam.sgml | 14 +++++++-------
src/backend/access/brin/brin.c | 6 ++++--
src/backend/access/index/indexam.c | 5 ++---
src/backend/catalog/index.c | 3 +++
src/backend/commands/constraint.c | 3 +++
src/include/access/amapi.h | 3 ++-
src/include/access/brin_internal.h | 2 +-
src/test/regress/expected/brin.out | 3 ++-
src/test/regress/sql/brin.sql | 3 ++-
9 files changed, 26 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2024-04-19 17:29:53 pgsql: Make PostgreSQL::Test::Cluster::init_from_backup handle tablespa
Previous Message Daniel Gustafsson 2024-04-19 12:55:13 pgsql: Doc: Remove mention of @ and ~ GiST operators