Create a new file group with the default configs.
| 197 | |
| 198 | /// Create a new file group with the default configs. |
| 199 | TmpFileGroup* NewFileGroup() { |
| 200 | TmpFileGroup* file_group = |
| 201 | obj_pool_.Add(new TmpFileGroup(test_env_->tmp_file_mgr(), |
| 202 | test_env_->exec_env()->disk_io_mgr(), NewProfile(), TUniqueId())); |
| 203 | file_groups_.push_back(file_group); |
| 204 | return file_group; |
| 205 | } |
| 206 | |
| 207 | // Helper to check if the page is evicted. |
| 208 | bool IsEvicted(BufferPool::PageHandle* page) { |
nothing calls this directly
no test coverage detected