SHaaD94 opened a new issue, #5841:
URL: https://github.com/apache/arrow-rs/issues/5841
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
In our system, we read a lot of strings, stored in parquet. Until recently
we've been using `row.get_column_iter()` and cloning all column values. It
would be really nice if there would be a way move the ownership of column
values out of the row.
**Describe the solution you'd like**
Move of internal fields structure out like this would work for us:
```
pub fn into_columns(self) -> Vec<(String, Field)> {
self.fields
}
```
**Describe alternatives you've considered**
Corruntely I just transmute the row into columns vector, but I don't really
like keeping something as unsafe in my code base.
**Additional context**
<!--
Add any other context or screenshots about the feature request here.
-->
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]