* 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. */
| 1633 | * function doesn't. |
| 1634 | */ |
| 1635 | bytea * |
| 1636 | SendFunctionCall(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 |
no outgoing calls
no test coverage detected