From: Masahiko Sawada Date: Tue, 26 Mar 2024 04:13:26 +0000 (+0900) Subject: Fix inconsistent function prototypes with function definitions. X-Git-Tag: REL_17_BETA1~512 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=a0e22ef9114b016827118cb5316af2f02d3ff4b0;p=postgresql.git Fix inconsistent function prototypes with function definitions. Introduced by 30e144287a. Reviewed-by: John Naylor Discussion: https://postgr.es/m/CAD21AoCaDT%2B-ZaVjbtvumms0tyyHPNLELK2UX-MLG9XCgioaNw%40mail.gmail.com --- diff --git a/src/include/access/tidstore.h b/src/include/access/tidstore.h index 8cf4e94f123..09f7a9a4745 100644 --- a/src/include/access/tidstore.h +++ b/src/include/access/tidstore.h @@ -29,9 +29,9 @@ typedef struct TidStoreIterResult OffsetNumber *offsets; } TidStoreIterResult; -extern TidStore *TidStoreCreate(size_t max_bytes, dsa_area *dsa, +extern TidStore *TidStoreCreate(size_t max_bytes, dsa_area *area, int tranche_id); -extern TidStore *TidStoreAttach(dsa_area *dsa, dsa_pointer rt_dp); +extern TidStore *TidStoreAttach(dsa_area *area, dsa_pointer handle); extern void TidStoreDetach(TidStore *ts); extern void TidStoreLockExclusive(TidStore *ts); extern void TidStoreLockShare(TidStore *ts);