| 166 | } |
| 167 | |
| 168 | arrow::Status RunExamples(const std::string& path_to_file) { |
| 169 | ARROW_RETURN_NOT_OK(WriteFullFile(path_to_file)); |
| 170 | ARROW_RETURN_NOT_OK(ReadFullFile(path_to_file)); |
| 171 | ARROW_RETURN_NOT_OK(WriteInBatches(path_to_file)); |
| 172 | ARROW_RETURN_NOT_OK(ReadInBatches(path_to_file)); |
| 173 | return arrow::Status::OK(); |
| 174 | } |
| 175 | |
| 176 | int main(int argc, char** argv) { |
| 177 | if (argc != 2) { |
no test coverage detected