enhance: [2.6] [test] Move R-Tree index tests into the implementation package (#45356)

master pr: #45355

Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>
This commit is contained in:
cai.zhang 2025-11-07 10:05:35 +08:00 committed by GitHub
parent 27d737bbaf
commit b33c58807a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 6 deletions

View File

@ -15,7 +15,7 @@
#include <string> #include <string>
#include <fstream> #include <fstream>
#include "index/RTreeIndex.h" #include "RTreeIndex.h"
#include "storage/Util.h" #include "storage/Util.h"
#include "storage/FileManager.h" #include "storage/FileManager.h"
#include "common/Types.h" #include "common/Types.h"
@ -24,7 +24,7 @@
#include "pb/plan.pb.h" #include "pb/plan.pb.h"
#include "common/Geometry.h" #include "common/Geometry.h"
#include "common/EasyAssert.h" #include "common/EasyAssert.h"
#include "index/IndexFactory.h" #include "IndexFactory.h"
#include "storage/InsertData.h" #include "storage/InsertData.h"
#include "storage/PayloadReader.h" #include "storage/PayloadReader.h"
#include "storage/DiskFileManagerImpl.h" #include "storage/DiskFileManagerImpl.h"
@ -32,7 +32,7 @@
#include "query/ExecPlanNodeVisitor.h" #include "query/ExecPlanNodeVisitor.h"
#include "common/Consts.h" #include "common/Consts.h"
#include "test_utils/storage_test_utils.h" #include "test_utils/storage_test_utils.h"
#include "index/Utils.h" #include "Utils.h"
#include "storage/ThreadPools.h" #include "storage/ThreadPools.h"
#include "test_utils/cachinglayer_test_utils.h" #include "test_utils/cachinglayer_test_utils.h"

View File

@ -12,7 +12,7 @@
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <filesystem> #include <filesystem>
#include <vector> #include <vector>
#include "index/RTreeIndexWrapper.h" #include "RTreeIndexWrapper.h"
#include "common/Geometry.h" #include "common/Geometry.h"
class RTreeIndexWrapperTest : public ::testing::Test { class RTreeIndexWrapperTest : public ::testing::Test {

View File

@ -49,8 +49,6 @@ set(MILVUS_TEST_FILES
test_rust_result.cpp test_rust_result.cpp
test_storage_v2_index_raw_data.cpp test_storage_v2_index_raw_data.cpp
test_group_by_json.cpp test_group_by_json.cpp
test_rtree_index_wrapper.cpp
test_rtree_index.cpp
) )
if ( NOT (INDEX_ENGINE STREQUAL "cardinal") ) if ( NOT (INDEX_ENGINE STREQUAL "cardinal") )