()
| 846 | |
| 847 | #[test] |
| 848 | fn test_fixed_size_binary() { |
| 849 | let array = FixedSizeBinaryArray::new(4, [0; 16].into(), None); |
| 850 | let result = length(&array).unwrap(); |
| 851 | assert_eq!(result.as_ref(), &Int32Array::from(vec![4; 4])); |
| 852 | |
| 853 | let result = bit_length(&array).unwrap(); |
| 854 | assert_eq!(result.as_ref(), &Int32Array::from(vec![32; 4])); |
| 855 | } |
| 856 | #[test] |
| 857 | fn length_test_ree_string_values() { |
| 858 | use arrow_array::RunArray; |
nothing calls this directly
no test coverage detected