From 3c1447752d086932e9379d5866a995911e88760b Mon Sep 17 00:00:00 2001 From: reshke Date: Tue, 6 Jan 2026 14:03:49 +0000 Subject: [PATCH v1] Remove Int8GetDatum function. We have no uses of Int8GetDatum in our tree and did not have for a long time (or never). Suggested-by: Tom Lane --- src/include/postgres.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/include/postgres.h b/src/include/postgres.h index 9268e6832cc..6423c87c64e 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -134,16 +134,6 @@ CharGetDatum(char X) return (Datum) X; } -/* - * Int8GetDatum - * Returns datum representation for an 8-bit integer. - */ -static inline Datum -Int8GetDatum(int8 X) -{ - return (Datum) X; -} - /* * DatumGetUInt8 * Returns 8-bit unsigned integer value of a datum. -- 2.43.0