(expr: Expr, schema: &DFSchema)
| 187 | } |
| 188 | |
| 189 | fn coerce(expr: Expr, schema: &DFSchema) -> Result<Expr> { |
| 190 | let mut expr_rewrite = TypeCoercionRewriter { schema }; |
| 191 | expr.rewrite(&mut expr_rewrite).data() |
| 192 | } |
| 193 | |
| 194 | #[cfg(test)] |
| 195 | mod tests { |
no test coverage detected
searching dependent graphs…