Update knowhere commit to fix BIN_IVF_FLAT upgrade (#24187)

Signed-off-by: Yudong Cai <yudong.cai@zilliz.com>
pull/24228/head
Cai Yudong 2023-05-18 17:57:23 +08:00 committed by GitHub
parent b89f06dd19
commit b1afd3ea2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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";
}

View File

@ -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})