()
| 34 | |
| 35 | impl FieldTapePositions { |
| 36 | fn new() -> Self { |
| 37 | Self { |
| 38 | data: Vec::new(), |
| 39 | row_count: 0, |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | fn resize(&mut self, field_count: usize, row_count: usize) -> Result<(), ArrowError> { |
| 44 | let total_len = field_count.checked_mul(row_count).ok_or_else(|| { |
nothing calls this directly
no test coverage detected