File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313
1414#include " common/config.hpp"
1515#include " common/value.hpp"
16- #include " storage/buffer_pool_manager.hpp"
1716#include " storage/btree_index.hpp"
17+ #include " storage/buffer_pool_manager.hpp"
1818#include " storage/heap_table.hpp"
1919#include " storage/storage_manager.hpp"
2020
@@ -29,8 +29,8 @@ class BTreeIndexTests : public ::testing::Test {
2929 void SetUp () override {
3030 disk_manager_ = std::make_unique<StorageManager>(" ./test_idx_data" );
3131 disk_manager_->create_dir_if_not_exists ();
32- bpm_ = std::make_unique<BufferPoolManager>(Config::DEFAULT_BUFFER_POOL_SIZE,
33- *disk_manager_);
32+ bpm_ =
33+ std::make_unique<BufferPoolManager>(Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager_);
3434
3535 index_ = std::make_unique<BTreeIndex>(" test_index" , *bpm_, ValueType::TYPE_INT64);
3636 }
You can’t perform that action at this time.
0 commit comments