(op: Operator)
| 1257 | } |
| 1258 | |
| 1259 | fn reverse_operator(op: Operator) -> Result<Operator> { |
| 1260 | op.swap().ok_or_else(|| { |
| 1261 | internal_datafusion_err!( |
| 1262 | "Could not reverse operator {op} while building pruning predicate" |
| 1263 | ) |
| 1264 | }) |
| 1265 | } |
| 1266 | |
| 1267 | /// Given a column reference to `column`, returns a pruning |
| 1268 | /// expression in terms of the min and max that will evaluate to true |
no test coverage detected
searching dependent graphs…