()
| 42 | |
| 43 | #[tokio::test] |
| 44 | async fn test_empty_batch() { |
| 45 | let batch = make_primitive_batch(5); |
| 46 | let empty = RecordBatch::new_empty(batch.schema()); |
| 47 | roundtrip(vec![empty]).await; |
| 48 | } |
| 49 | |
| 50 | #[tokio::test] |
| 51 | async fn test_error() { |
nothing calls this directly
no test coverage detected