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

Function main

cpp/examples/arrow/engine_substrait_consumption.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 std::cout << "Please specify a parquet file to scan" << std::endl;
176 // Fake pass for CI
177 return EXIT_SUCCESS;
178 }
179
180 auto status = RunSubstraitConsumer(argc, argv);
181 if (!status.ok()) {
182 std::cerr << status.ToString() << std::endl;
183 return EXIT_FAILURE;
184 }
185
186 return EXIT_SUCCESS;
187}

Callers

nothing calls this directly

Calls 3

RunSubstraitConsumerFunction · 0.85
okMethod · 0.45
ToStringMethod · 0.45

Tested by

no test coverage detected