MCPcopy Create free account
hub / github.com/dolthub/doltgresql / CFunction

Struct CFunction

server/functions/framework/c_function.go:24–33  ·  view source on GitHub ↗

CFunction is the implementation of functions that host their logic in a shared library.

Source from the content-addressed store, hash-verified

22
23// CFunction is the implementation of functions that host their logic in a shared library.
24type 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
35var _ FunctionInterface = CFunction{}
36

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected