| 27 | void DieWithMessage(const std::string& msg) { ARROW_LOG(FATAL) << msg; } |
| 28 | |
| 29 | void InvalidValueOrDie(const Status& st) { |
| 30 | DieWithMessage(std::string("ValueOrDie called on an error: ") + st.ToString()); |
| 31 | } |
| 32 | |
| 33 | Status UninitializedResult() { |
| 34 | static StatusConstant uninitialized_result{StatusCode::UnknownError, |
no test coverage detected