[ 
https://issues.apache.org/jira/browse/ARROW-7332?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated ARROW-7332:
----------------------------------
    Labels: pull-request-available  (was: )

> [C++][Parquet] Explicitly catch status exceptions in PARQUET_CATCH_NOT_OK
> -------------------------------------------------------------------------
>
>                 Key: ARROW-7332
>                 URL: https://issues.apache.org/jira/browse/ARROW-7332
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++
>    Affects Versions: 0.15.1
>            Reporter: Ben Kietzman
>            Assignee: Antoine Pitrou
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 0.17.0
>
>
> PARQUET_THROW_NOT_OK throws a ParquetStatusException, which contains a full 
> Status rather than just an error string. These could be caught explicitly in 
> PARQUET_CATCH_NOT_OK and the original status returned rather than creating a 
> new status:
> {code}
>   } catch (const ::parquet::ParquetStatusException& e) { \
>     return e.status(); \
>   } catch (const ::parquet::ParquetException& e) { \
>     return Status::IOError(e.what()) \
> {code}
> This will retain the original StatusCode rather than overwriting it with 
> IOError.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to