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

Function RunExamples

cpp/examples/arrow/parquet_read_write.cc:168–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166}
167
168arrow::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
176int main(int argc, char** argv) {
177 if (argc != 2) {

Callers 1

mainFunction · 0.70

Calls 5

WriteFullFileFunction · 0.85
ReadFullFileFunction · 0.85
WriteInBatchesFunction · 0.85
ReadInBatchesFunction · 0.85
OKFunction · 0.50

Tested by

no test coverage detected