()
| 1023 | #[test] |
| 1024 | #[should_panic(expected = "MutableArrayData not nullable")] |
| 1025 | fn test_extend_nulls_panic() { |
| 1026 | let int = Int32Array::from(vec![1, 2, 3, 4]).into_data(); |
| 1027 | let mut mutable = MutableArrayData::new(vec![&int], false, 4); |
| 1028 | mutable.extend_nulls(2); |
| 1029 | } |
| 1030 | |
| 1031 | #[test] |
| 1032 | fn test_string_view() { |
nothing calls this directly
no test coverage detected