MCPcopy Create free account
hub / github.com/apache/cloudberry / Float8GetDatum

Function Float8GetDatum

src/include/postgres.h:581–581  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

579
580static inline float8 DatumGetFloat8(Datum d) { Datum_U du; du.d = d; return du.f8; }
581static inline Datum Float8GetDatum(float8 f) { Datum_U du; du.f8 = f; return du.d; }
582static inline Datum Float8GetDatumFast(float8 f) { return Float8GetDatum(f); }
583
584static inline ItemPointer DatumGetItemPointer(Datum d) { return (ItemPointer) DatumGetPointer(d); }

Callers 15

Float8GetDatumFastFunction · 0.70
gbt_num_fetchFunction · 0.50
SV_to_JsonbValueFunction · 0.50
leftmostvalue_float8Function · 0.50
hash_metapage_infoFunction · 0.50
InitializeArrayFunction · 0.50
ArrowScalarToDatumFunction · 0.50
json_to_manifestvalueFunction · 0.50
Float8ToDutumFunction · 0.50
pgstathashindexFunction · 0.50
normal_randFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected