()
| 1500 | |
| 1501 | #[test] |
| 1502 | fn test_i64() -> Result<()> { |
| 1503 | let array = Int64Array::from(vec![Some(2), None, Some(1), None]); |
| 1504 | let data = array.into_data(); |
| 1505 | test_round_trip(&data) |
| 1506 | } |
| 1507 | |
| 1508 | #[test] |
| 1509 | fn test_struct() -> Result<()> { |
nothing calls this directly
no test coverage detected