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

Function main

cpp/examples/arrow/rapidjson_row_converter.cc:607–618  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

605}
606
607int main(int argc, char** argv) {
608 int32_t num_rows = argc > 1 ? std::atoi(argv[1]) : 100;
609 int32_t batch_size = argc > 2 ? std::atoi(argv[2]) : 100;
610
611 arrow::Status status = DoRowConversion(num_rows, batch_size);
612
613 if (!status.ok()) {
614 std::cerr << "Error occurred: " << status.message() << std::endl;
615 return EXIT_FAILURE;
616 }
617 return EXIT_SUCCESS;
618}

Callers

nothing calls this directly

Calls 2

DoRowConversionFunction · 0.85
okMethod · 0.45

Tested by

no test coverage detected