mirror of
https://github.com/postgres/postgres.git
synced 2026-03-22 18:33:19 -04:00
Remove Int8GetDatum function
We have no uses of Int8GetDatum in our tree and did not have for a long time (or never), and the inverse does not exist either. Author: Kirill Reshke <reshkekirill@gmail.com> Suggested-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://www.postgresql.org/message-id/flat/CALdSSPhFyb9qLSHee73XtZm1CBWJNo9+JzFNf-zUEWCRW5yEiQ@mail.gmail.com
This commit is contained in:
parent
d537f59fbb
commit
d4a080b8a1
1 changed files with 0 additions and 10 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue