CFunction is the implementation of functions that host their logic in a shared library.
| 22 | |
| 23 | // CFunction is the implementation of functions that host their logic in a shared library. |
| 24 | type CFunction struct { |
| 25 | ID id.Function |
| 26 | ReturnType *pgtypes.DoltgresType |
| 27 | ParameterTypes []*pgtypes.DoltgresType |
| 28 | Variadic bool |
| 29 | IsNonDeterministic bool |
| 30 | Strict bool |
| 31 | ExtensionName extensions.LibraryIdentifier |
| 32 | ExtensionSymbol string |
| 33 | } |
| 34 | |
| 35 | var _ FunctionInterface = CFunction{} |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected