| 163 | }; |
| 164 | |
| 165 | int main(int argc, char** argv) { |
| 166 | // todo: use folly::Init init after upgrade folly lib |
| 167 | folly::init(&argc, &argv); |
| 168 | memory::initializeMemoryManager({}); |
| 169 | serializer::presto::PrestoVectorSerde::registerVectorSerde(); |
| 170 | SerializerBenchmark bm; |
| 171 | bm.setup(); |
| 172 | bm.timeFlat(); |
| 173 | } |
nothing calls this directly
no test coverage detected