apache / arrow-rs

Official Rust implementation of Apache Arrow
https://arrow.apache.org/
Apache License 2.0
2.62k stars 802 forks source link

`parquet::record::make_row` is not exposed to users, leaving no option to users to manually create `Row` objects #6761

Closed jonded94 closed 1 day ago

jonded94 commented 1 day ago

If one want's to do manual modifications of parquet::record::Row objects, they currently can't do it because there is no way to construct a parquet::record::Row object.

There is no publicly exposed new function, and the already existing make_row function in the same module is also not publicy exposed.

Describe the solution you'd like

Expose the parquet::record::make_row function.