| 125 | } |
| 126 | |
| 127 | int main(int argc, char** argv) { |
| 128 | auto status = DoHashJoin(); |
| 129 | if (!status.ok()) { |
| 130 | std::cerr << "Error occurred: " << status.message() << std::endl; |
| 131 | return EXIT_FAILURE; |
| 132 | } |
| 133 | return EXIT_SUCCESS; |
| 134 | } |
nothing calls this directly
no test coverage detected