()
| 1559 | |
| 1560 | #[test] |
| 1561 | fn test_fixed_size_binary() -> Result<()> { |
| 1562 | let values = vec![vec![10, 10, 10], vec![20, 20, 20], vec![30, 30, 30]]; |
| 1563 | let array = FixedSizeBinaryArray::try_from_iter(values.into_iter())?; |
| 1564 | |
| 1565 | let data = array.into_data(); |
| 1566 | test_round_trip(&data) |
| 1567 | } |
| 1568 | |
| 1569 | #[test] |
| 1570 | fn test_fixed_size_binary_with_nulls() -> Result<()> { |
nothing calls this directly
no test coverage detected