SQLFunction is the implementation of functions created using SQL.
| 30 | |
| 31 | // SQLFunction is the implementation of functions created using SQL. |
| 32 | type 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 | |
| 46 | var _ FunctionInterface = SQLFunction{} |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected