Returns this function's [`Signature`] (what input types are accepted). See [`ScalarUDFImpl::signature`] for more details.
(&self)
| 213 | /// |
| 214 | /// See [`ScalarUDFImpl::signature`] for more details. |
| 215 | pub fn signature(&self) -> &Signature { |
| 216 | self.inner.signature() |
| 217 | } |
| 218 | |
| 219 | /// The datatype this function returns given the input argument types. |
| 220 | /// This function is used when the input arguments are [`DataType`]s. |