()
| 1493 | |
| 1494 | #[test] |
| 1495 | fn test_u64() -> Result<()> { |
| 1496 | let array = UInt64Array::from(vec![Some(2), None, Some(1), None]); |
| 1497 | let data = array.into_data(); |
| 1498 | test_round_trip(&data) |
| 1499 | } |
| 1500 | |
| 1501 | #[test] |
| 1502 | fn test_i64() -> Result<()> { |
nothing calls this directly
no test coverage detected