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

Function SendFunctionCall

src/backend/utils/fmgr/fmgr.c:1635–1639  ·  view source on GitHub ↗

* Call a previously-looked-up datatype binary-output function. * * Do not call this on NULL datums. * * This is little more than window dressing for FunctionCall1, but it does * guarantee a non-toasted result, which strictly speaking the underlying * function doesn't. */

Source from the content-addressed store, hash-verified

1633 * function doesn't.
1634 */
1635bytea *
1636SendFunctionCall(FmgrInfo *flinfo, Datum val)
1637{
1638 return DatumGetByteaP(FunctionCall1(flinfo, val));
1639}
1640
1641/*
1642 * As above, for I/O functions identified by OID. These are only to be used

Callers 8

multirange_sendFunction · 0.85
range_sendFunction · 0.85
array_sendFunction · 0.85
array_agg_serializeFunction · 0.85
record_sendFunction · 0.85
OidSendFunctionCallFunction · 0.85
CopyOneRowToFunction · 0.85
printtupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected