From 4537b9da60fa7741cf835d9d06ccfe75fc479e21 Mon Sep 17 00:00:00 2001 From: "wangyunlai.wyl" Date: Sat, 2 Apr 2022 15:36:42 +0800 Subject: [PATCH] refactor index directory --- src/observer/storage/default/default_handler.cpp | 4 ++-- unitest/bplus_tree_test.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/observer/storage/default/default_handler.cpp b/src/observer/storage/default/default_handler.cpp index b8210c5..87f5824 100644 --- a/src/observer/storage/default/default_handler.cpp +++ b/src/observer/storage/default/default_handler.cpp @@ -20,7 +20,7 @@ See the Mulan PSL v2 for more details. */ #include "common/log/log.h" #include "common/lang/string.h" #include "storage/common/record_manager.h" -#include "storage/common/bplus_tree.h" +#include "storage/index/bplus_tree.h" #include "storage/common/table.h" #include "storage/common/condition_filter.h" @@ -230,4 +230,4 @@ RC DefaultHandler::sync() } } return rc; -} \ No newline at end of file +} diff --git a/unitest/bplus_tree_test.cpp b/unitest/bplus_tree_test.cpp index 76a24be..0af06ff 100644 --- a/unitest/bplus_tree_test.cpp +++ b/unitest/bplus_tree_test.cpp @@ -15,7 +15,7 @@ See the Mulan PSL v2 for more details. */ #include #include -#include "storage/common/bplus_tree.h" +#include "storage/index/bplus_tree.h" #include "storage/default/disk_buffer_pool.h" #include "rc.h" #include "common/log/log.h" -- GitLab