QuickFunction2 is an implementation of QuickFunction that handles two parameters.
| 179 | |
| 180 | // QuickFunction2 is an implementation of QuickFunction that handles two parameters. |
| 181 | type QuickFunction2 struct { |
| 182 | Name string |
| 183 | Arguments [2]sql.Expression |
| 184 | IsStrict bool |
| 185 | IsSRF bool |
| 186 | callResolved [3]*pgtypes.DoltgresType |
| 187 | function Function2 |
| 188 | } |
| 189 | |
| 190 | var _ QuickFunction = (*QuickFunction2)(nil) |
| 191 |
nothing calls this directly
no outgoing calls
no test coverage detected