enhance: Update Knowhere version (#38942)

Signed-off-by: xianliang.li <xianliang.li@zilliz.com>
pull/38991/head
foxspy 2025-01-03 14:28:53 +08:00 committed by GitHub
parent 1825ab54df
commit af08b5b311
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 4 deletions

View File

@ -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 52c03030 )
set( KNOWHERE_VERSION 1cb3f0e )
set( GIT_REPOSITORY "https://github.com/zilliztech/knowhere.git")
message(STATUS "Knowhere repo: ${GIT_REPOSITORY}")
message(STATUS "Knowhere version: ${KNOWHERE_VERSION}")

View File

@ -50,10 +50,8 @@ func genGroupByBinaryIndex(metricType entity.MetricType) []index.Index {
func genUnsupportedFloatGroupByIndex() []index.Index {
idxIvfPq := index.NewIvfPQIndex(entity.L2, 128, 16, 8)
idxScann := index.NewSCANNIndex(entity.L2, 16, false)
return []index.Index{
idxIvfPq,
idxScann,
}
}

View File

@ -10610,7 +10610,7 @@ class TestSearchGroupBy(TestcaseBase):
3. search with group by
verify: the error code and msg
"""
if index in ["HNSW", "IVF_FLAT", "FLAT", "IVF_SQ8", "DISKANN"]:
if index in ["HNSW", "IVF_FLAT", "FLAT", "IVF_SQ8", "DISKANN", "SCANN"]:
pass # Only HNSW and IVF_FLAT are supported
else:
metric = "L2"