(batch: &'a RecordBatch, name: &str)
| 3093 | } |
| 3094 | |
| 3095 | fn int32_array<'a>(batch: &'a RecordBatch, name: &str) -> Result<&'a arrow_array::Int32Array> { |
| 3096 | column(batch, name)? |
| 3097 | .as_any() |
| 3098 | .downcast_ref::<Int32Array>() |
| 3099 | .with_context(|| format!("column {name} is not Int32Array")) |
| 3100 | } |
| 3101 | |
| 3102 | fn timestamp_ms_array<'a>( |
| 3103 | batch: &'a RecordBatch, |
no test coverage detected