()
| 907 | |
| 908 | #[test] |
| 909 | fn test_null_array_is_not_null() { |
| 910 | let a = NullArray::new(3); |
| 911 | |
| 912 | let res = is_not_null(&a).unwrap(); |
| 913 | |
| 914 | let expected = BooleanArray::from(vec![false, false, false]); |
| 915 | |
| 916 | assert_eq!(expected, res); |
| 917 | assert!(res.nulls().is_none()); |
| 918 | } |
| 919 | |
| 920 | #[test] |
| 921 | fn test_dense_union_is_null() { |
nothing calls this directly
no test coverage detected