Skip to content

Commit

Permalink
update knowhere version
Browse files Browse the repository at this point in the history
Signed-off-by: xianliang.li <[email protected]>
  • Loading branch information
foxspy committed Nov 11, 2024
1 parent 81141bd commit d2d0591
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/core/thirdparty/knowhere/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Update KNOWHERE_VERSION for the first occurrence
milvus_add_pkg_config("knowhere")
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES "")
set( KNOWHERE_VERSION e67abe7 )
set( KNOWHERE_VERSION bfccf6a )
set( GIT_REPOSITORY "https://github.com/zilliztech/knowhere.git")
message(STATUS "Knowhere repo: ${GIT_REPOSITORY}")
message(STATUS "Knowhere version: ${KNOWHERE_VERSION}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func Test_floatVectorBaseChecker_CheckValidDataType(t *testing.T) {
},
{
dType: schemapb.DataType_BinaryVector,
errIsNil: true,
errIsNil: false,
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/util/indexparamcheck/hnsw_checker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func Test_hnswChecker_CheckValidDataType(t *testing.T) {
},
{
dType: schemapb.DataType_BinaryVector,
errIsNil: true,
errIsNil: false,
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/util/vecindexmgr/vector_index_mgr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func Test_VecIndex_DataType_Support(t *testing.T) {
schemapb.DataType_Float16Vector,
schemapb.DataType_SparseFloatVector,
},
wants: []bool{true, true, true, true, false},
wants: []bool{true, false, true, true, false},
},
{
indexType: "DISKANN",
Expand Down

0 comments on commit d2d0591

Please sign in to comment.