(predicate: &Expr)
| 248 | use std::sync::Arc; |
| 249 | |
| 250 | fn eval_bounds(predicate: &Expr) -> Result<NullableInterval> { |
| 251 | let schema = DFSchema::try_from(Schema::empty())?; |
| 252 | evaluate_bounds(predicate, None, &schema) |
| 253 | } |
| 254 | |
| 255 | #[test] |
| 256 | fn evaluate_bounds_literal() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…