()
| 3922 | |
| 3923 | #[test] |
| 3924 | fn prune_bool_column_eq_true() { |
| 3925 | let (schema, statistics, expected_true, _) = bool_setup(); |
| 3926 | |
| 3927 | prune_with_expr( |
| 3928 | // b1 = true |
| 3929 | col("b1").eq(lit(true)), |
| 3930 | &schema, |
| 3931 | &statistics, |
| 3932 | &expected_true, |
| 3933 | ); |
| 3934 | } |
| 3935 | |
| 3936 | #[test] |
| 3937 | fn prune_bool_not_column_eq_true() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…