()
| 3896 | |
| 3897 | #[test] |
| 3898 | fn prune_bool_column() { |
| 3899 | let (schema, statistics, expected_true, _) = bool_setup(); |
| 3900 | |
| 3901 | prune_with_expr( |
| 3902 | // b1 |
| 3903 | col("b1"), |
| 3904 | &schema, |
| 3905 | &statistics, |
| 3906 | &expected_true, |
| 3907 | ); |
| 3908 | } |
| 3909 | |
| 3910 | #[test] |
| 3911 | fn prune_bool_not_column() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…