mirror of https://github.com/milvus-io/milvus.git
enhance: Update Knowhere version (#38942)
Signed-off-by: xianliang.li <xianliang.li@zilliz.com>pull/38991/head
parent
1825ab54df
commit
af08b5b311
|
@ -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}")
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue