()
| 3875 | |
| 3876 | #[test] |
| 3877 | fn prune_bool_const_expr() { |
| 3878 | let (schema, statistics, _, _) = bool_setup(); |
| 3879 | |
| 3880 | prune_with_expr( |
| 3881 | // true |
| 3882 | lit(true), |
| 3883 | &schema, |
| 3884 | &statistics, |
| 3885 | &[true, true, true, true, true], |
| 3886 | ); |
| 3887 | |
| 3888 | prune_with_expr( |
| 3889 | // false |
| 3890 | lit(false), |
| 3891 | &schema, |
| 3892 | &statistics, |
| 3893 | &[false, false, false, false, false], |
| 3894 | ); |
| 3895 | } |
| 3896 | |
| 3897 | #[test] |
| 3898 | fn prune_bool_column() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…