()
| 3909 | |
| 3910 | #[test] |
| 3911 | fn prune_bool_not_column() { |
| 3912 | let (schema, statistics, _, expected_false) = bool_setup(); |
| 3913 | |
| 3914 | prune_with_expr( |
| 3915 | // !b1 |
| 3916 | col("b1").not(), |
| 3917 | &schema, |
| 3918 | &statistics, |
| 3919 | &expected_false, |
| 3920 | ); |
| 3921 | } |
| 3922 | |
| 3923 | #[test] |
| 3924 | fn prune_bool_column_eq_true() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…