pgsql: Assert that ExecOpenIndices and ExecCloseIndices are not repeate

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Assert that ExecOpenIndices and ExecCloseIndices are not repeate
Date: 2025-02-19 21:45:20
Message-ID: E1tkrsf-000CXf-0x@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Assert that ExecOpenIndices and ExecCloseIndices are not repeated.

These functions should be called at most once per ResultRelInfo;
it's wasteful to do otherwise, and certainly the pattern of
opening twice and then closing twice is a bad idea. Moreover,
aminsertcleanup functions might not be prepared to be called twice,
as the just-hardened code in BRIN demonstrates.

This amounts to an API change, since such coding patterns were
safe even if wasteful before v17. Hence, apply to HEAD only.
(Extension code violating this new rule faces some risk in v17,
but we just fixed brininsertcleanup and there are probably few
other aminsertcleanup functions as yet. So the odds of breaking
usable code seem higher than the odds of doing something useful
with a back-patch.)

Bug: #18815
Reported-by: Sergey Belyashov <sergey(dot)belyashov(at)gmail(dot)com>
Discussion: https://postgr.es/m/18815-2a0407cc7f40b327@postgresql.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e596e077bbb3b512bbc80610d64dc007a5761ce6

Modified Files
--------------
src/backend/executor/execIndexing.c | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tomas Vondra 2025-02-19 22:54:39 pgsql: Correct relation size estimate with low fillfactor
Previous Message Tomas Vondra 2025-02-19 20:09:37 pgsql: Consider BufFiles when adjusting hashjoin parameters