Ben Kietzman created ARROW-7332:
-----------------------------------
Summary: [C++][Parquet]
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: Ben Kietzman
Fix For: 1.0.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)