(&self, schema: &dyn ExprSchema)
| 398 | } |
| 399 | |
| 400 | fn metadata(&self, schema: &dyn ExprSchema) -> Result<FieldMetadata> { |
| 401 | self.to_field(schema) |
| 402 | .map(|(_, field)| FieldMetadata::from(field.metadata())) |
| 403 | } |
| 404 | |
| 405 | /// Returns the datatype and nullability of the expression based on [ExprSchema]. |
| 406 | /// |
no test coverage detected