pgsql: Remove heap_hot_search().

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove heap_hot_search().
Date: 2019-03-26 02:18:44
Message-ID: E1h8bfo-0005o7-UN@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove heap_hot_search().

After 71bdc99d0d7, "tableam: Add helper for indexes to check if a
corresponding table tuples exist." there's no in-core user left. As
there's unlikely to be an external user, and such an external user
could easily be adjusted to use table_index_fetch_tuple_check(),
remove heap_hot_search().

Per complaint from Peter Geoghegan

Author: Andres Freund
Discussion: https://postgr.es/m/CAH2-Wzn0Oq4ftJrTqRAsWy2WGjv0QrJcwoZ+yqWsF_Z5vjUBFw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2ac1b2b175ea5456516e59fe2b53a1e0578a5dbd

Modified Files
--------------
src/backend/access/heap/heapam.c | 24 ------------------------
src/include/access/heapam.h | 2 --
2 files changed, 26 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2019-03-26 08:32:27 pgsql: Fix misplaced const
Previous Message Andres Freund 2019-03-26 01:58:56 Re: pgsql: tableam: Add helper for indexes to check if a corresponding tabl