QuickFunction3 is an implementation of QuickFunction that handles three parameters.
| 322 | |
| 323 | // QuickFunction3 is an implementation of QuickFunction that handles three parameters. |
| 324 | type QuickFunction3 struct { |
| 325 | Name string |
| 326 | Arguments [3]sql.Expression |
| 327 | IsStrict bool |
| 328 | IsSRF bool |
| 329 | callResolved [4]*pgtypes.DoltgresType |
| 330 | function Function3 |
| 331 | } |
| 332 | |
| 333 | var _ QuickFunction = (*QuickFunction3)(nil) |
| 334 |
nothing calls this directly
no outgoing calls
no test coverage detected