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

Function DatumGetChar

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

Source from the content-addressed store, hash-verified

485static inline Datum BoolGetDatum(bool b) { return (b ? 1 : 0); }
486
487static inline char DatumGetChar(Datum d) { return (char) d; }
488static inline Datum CharGetDatum(char c) { return (Datum) c; }
489
490static inline int8 DatumGetInt8(Datum d) { return (int8) d; }

Callers 15

EnableDisableRuleFunction · 0.85
chareqfastFunction · 0.85
charhashfastFunction · 0.85
is_agg_orderedFunction · 0.85
func_exec_locationFunction · 0.85
make_ruledefFunction · 0.85
make_viewdefFunction · 0.85
convert_string_datumFunction · 0.85
tsvector_filterFunction · 0.85
AlterFunctionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected