| 171 | } |
| 172 | |
| 173 | int 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 | } |
nothing calls this directly
no test coverage detected