(ctx *sql.Context, stack InterpreterStack, stmt string, bindings []string, enforceType bool)
| 34 | // framework package. |
| 35 | type InterpretedFunction interface { |
| 36 | ApplyBindings(ctx *sql.Context, stack InterpreterStack, stmt string, bindings []string, enforceType bool) (newStmt string, varFound bool, err error) |
| 37 | GetParameters() []*pgtypes.DoltgresType |
| 38 | GetParameterNames() []string |
| 39 | GetReturn() *pgtypes.DoltgresType |
no outgoing calls