mirror of https://github.com/milvus-io/milvus.git
Update knowhere commit to fix BIN_IVF_FLAT upgrade (#24187)
Signed-off-by: Yudong Cai <yudong.cai@zilliz.com>pull/24228/head
parent
b89f06dd19
commit
b1afd3ea2f
|
@ -200,6 +200,10 @@ MatchKnowhereError(knowhere::Status status) {
|
|||
return "err: invalid value in json";
|
||||
case knowhere::Status::arithmetic_overflow:
|
||||
return "err: arithmetic overflow";
|
||||
case knowhere::Status::raft_inner_error:
|
||||
return "err: raft inner error";
|
||||
case knowhere::Status::invalid_binary_set:
|
||||
return "err: invalid binary set";
|
||||
default:
|
||||
return "not match the error type in knowhere";
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
# or implied. See the License for the specific language governing permissions and limitations under the License.
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
set( KNOWHERE_VERSION fbf2b6e6 )
|
||||
set( KNOWHERE_VERSION ebc957d )
|
||||
|
||||
message(STATUS "Building knowhere-${KNOWHERE_SOURCE_VER} from source")
|
||||
message(STATUS ${CMAKE_BUILD_TYPE})
|
||||
|
|
Loading…
Reference in New Issue