MCPcopy Create free account
hub / github.com/apache/arrow / main

Function main

cpp/examples/arrow/parquet_read_write.cc:176–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176int main(int argc, char** argv) {
177 if (argc != 2) {
178 // Fake success for CI purposes.
179 return EXIT_SUCCESS;
180 }
181
182 std::string path_to_file = argv[1];
183 arrow::Status status = RunExamples(path_to_file);
184
185 if (!status.ok()) {
186 std::cerr << "Error occurred: " << status.message() << std::endl;
187 return EXIT_FAILURE;
188 }
189 return EXIT_SUCCESS;
190}

Callers

nothing calls this directly

Calls 2

RunExamplesFunction · 0.70
okMethod · 0.45

Tested by

no test coverage detected