| 28 | // read file |
| 29 | { |
| 30 | // allocate buffer |
| 31 | m_buf = make_unique<Buf>(m_footer->rowgroup_size); // todo[memory_pool] |
| 32 | io io = make_unique<File>(dir_path / FASTLANES_FILE_NAME); // todo[IO] |
| 33 | IO::read(io, *m_buf); |
nothing calls this directly
no test coverage detected