| 25 | namespace arrow::internal { |
| 26 | |
| 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()); |
no outgoing calls
no test coverage detected