apache / arrow

Apache Arrow is the universal columnar format and multi-language toolbox for fast data interchange and in-memory analytics
https://arrow.apache.org/
Apache License 2.0
14.63k stars 3.56k forks source link

[C++][Parquet] Add `arrow::Result` version of `parquet::arrow::OpenFile()` #44784

Closed kou closed 2 days ago

kou commented 2 days ago

Describe the enhancement requested

The current version uses arrow::Status and std::unique_ptr<parquet::arrow::FileReader>*: https://github.com/apache/arrow/blob/8f8ac38ea0073dfe4414bfad881e80036ca5af57/cpp/src/parquet/arrow/reader.h#L353-L363

Component(s)

C++, Parquet

kou commented 2 days ago

Issue resolved by pull request 44785 https://github.com/apache/arrow/pull/44785