Matches a `&[SqlScalarType]` derived from the user's function argument against this `ParamList`'s permitted arguments.
(&self, types: &[&SqlScalarType])
| 633 | /// Matches a `&[SqlScalarType]` derived from the user's function argument |
| 634 | /// against this `ParamList`'s permitted arguments. |
| 635 | fn exact_match(&self, types: &[&SqlScalarType]) -> bool { |
| 636 | types.iter().enumerate().all(|(i, t)| self[i] == **t) |
| 637 | } |
| 638 | |
| 639 | /// Generates values underlying data for for `mz_catalog.mz_functions.arg_ids`. |
| 640 | fn arg_names(&self) -> Vec<&'static str> { |
no test coverage detected