QuickFunction1 is an implementation of QuickFunction that handles a single parameter.
| 41 | |
| 42 | // QuickFunction1 is an implementation of QuickFunction that handles a single parameter. |
| 43 | type QuickFunction1 struct { |
| 44 | Name string |
| 45 | Argument sql.Expression |
| 46 | IsStrict bool |
| 47 | IsSRF bool |
| 48 | callResolved [2]*pgtypes.DoltgresType |
| 49 | function Function1 |
| 50 | } |
| 51 | |
| 52 | var _ QuickFunction = (*QuickFunction1)(nil) |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected