Function0 is a function that does not take any parameters.
| 60 | |
| 61 | // Function0 is a function that does not take any parameters. |
| 62 | type Function0 struct { |
| 63 | Name string |
| 64 | Return *pgtypes.DoltgresType |
| 65 | IsNonDeterministic bool |
| 66 | Strict bool |
| 67 | SRF bool |
| 68 | Callable func(ctx *sql.Context) (any, error) |
| 69 | } |
| 70 | |
| 71 | // Function1 is a function that takes one parameter. The parameter and return type is passed into the Callable function |
| 72 | // when the parameter (and possibly return type) is a polymorphic type. The return type is the last type in the array. |
nothing calls this directly
no outgoing calls
no test coverage detected