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

Struct SQLFunction

server/functions/framework/sql_function.go:32–44  ·  view source on GitHub ↗

SQLFunction is the implementation of functions created using SQL.

Source from the content-addressed store, hash-verified

30
31// SQLFunction is the implementation of functions created using SQL.
32type SQLFunction struct {
33 ID id.Function
34 ReturnType *pgtypes.DoltgresType
35 ParameterNames []string
36 ParameterTypes []*pgtypes.DoltgresType
37 ParameterDefaults []string
38 Variadic bool
39 IsNonDeterministic bool
40 Strict bool
41 SqlStatement string
42 SetOf bool
43 ReturnTableType []*pgtypes.DoltgresType
44}
45
46var _ FunctionInterface = SQLFunction{}
47

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected