pgsql: Remove durable_rename_excl()

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove durable_rename_excl()
Date: 2022-07-05 03:54:56
Message-ID: E1o8ZeJ-001Fp9-Ci@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove durable_rename_excl()

A previous commit replaced all the calls to this function with
durable_rename() as of dac1ff3, making it used nowhere in the tree.
Using it in extension code is also risky based on the issues described
in this previous commit, so let's remove it. This makes possible the
removal of HAVE_WORKING_LINK.

Author: Nathan Bossart
Reviewed-by: Robert Haas, Kyotaro Horiguchi, Michael Paquier
Discussion: https://postgr.es/m/20220407182954.GA1231544@nathanxps13

Branch
------
master

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

Modified Files
--------------
src/backend/storage/file/fd.c | 63 ------------------------------------------
src/include/pg_config_manual.h | 7 -----
src/include/storage/fd.h | 1 -
3 files changed, 71 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2022-07-05 05:30:29 pgsql: Add result_types column to pg_prepared_statements view
Previous Message Thomas Munro 2022-07-05 03:21:40 Re: pgsql: dshash: Add sequential scan support.