()
| 3080 | #[test] |
| 3081 | #[should_panic(expected = "index out of bounds")] |
| 3082 | fn test_invalid_empty_array() { |
| 3083 | let row: &[u8] = &[]; |
| 3084 | let binary_rows = BinaryArray::from(vec![row]); |
| 3085 | |
| 3086 | let converter = RowConverter::new(vec![SortField::new(DataType::Utf8)]).unwrap(); |
| 3087 | let parsed = converter.from_binary(binary_rows); |
| 3088 | |
| 3089 | converter.convert_rows(parsed.iter()).unwrap(); |
| 3090 | } |
| 3091 | |
| 3092 | #[test] |
| 3093 | #[should_panic(expected = "index out of bounds")] |
nothing calls this directly
no test coverage detected