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

Function main

cpp/examples/arrow/parquet_column_encryption.cc:173–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

RunExamplesFunction · 0.70
okMethod · 0.45

Tested by

no test coverage detected