| 35 | using namespace bytedance::bolt; |
| 36 | |
| 37 | int main(int argc, char* argv[]) { |
| 38 | gflags::ParseCommandLineFlags(&argc, &argv, true); |
| 39 | memory::MemoryManager::initialize(memory::MemoryManager::Options{}); |
| 40 | serializer::presto::PrestoVectorSerde::registerVectorSerde(); |
| 41 | filesystems::registerLocalFileSystem(); |
| 42 | auto test = std::make_unique<exec::test::JoinSpillInputBenchmarkBase>(); |
| 43 | test->setUp(); |
| 44 | test->run(); |
| 45 | test->printStats(); |
| 46 | test->cleanup(); |
| 47 | return 0; |
| 48 | } |
nothing calls this directly
no test coverage detected