diff options
author | Masahiko Sawada | 2024-03-26 04:13:26 +0000 |
---|---|---|
committer | Masahiko Sawada | 2024-03-26 04:13:26 +0000 |
commit | a0e22ef9114b016827118cb5316af2f02d3ff4b0 (patch) | |
tree | aa446afdc6cf7906c423f94d9c3d81bdda6aac00 | |
parent | 4edb37e322a64b1c9edd7f0da6fa7cda4541a67c (diff) |
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
-rw-r--r-- | src/include/access/tidstore.h | 4 |
1 files changed, 2 insertions, 2 deletions
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); |