| 53 | } // namespace arrow |
| 54 | |
| 55 | int main(int argc, char** argv) { |
| 56 | arrow::Status status = arrow::ipc::ConvertToFile(); |
| 57 | if (!status.ok()) { |
| 58 | std::cerr << "Could not convert to file: " << status.ToString() << std::endl; |
| 59 | return 1; |
| 60 | } |
| 61 | return 0; |
| 62 | } |
nothing calls this directly
no test coverage detected