From 91c33882b54d6f41f1b14f257d7518e6308740b2 Mon Sep 17 00:00:00 2001 From: zerowe-seven Date: Fri, 22 Nov 2019 06:56:53 -0800 Subject: [PATCH] #329 The error message in TableNotExistMsg has a grammatical error --- core/src/server/grpc_impl/request/GrpcBaseRequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp b/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp index e1eb07af5c..2aa96c5331 100644 --- a/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp +++ b/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp @@ -90,7 +90,7 @@ GrpcBaseRequest::SetStatus(ErrorCode error_code, const std::string& error_msg) { std::string GrpcBaseRequest::TableNotExistMsg(const std::string& table_name) { return "Table " + table_name + - " not exist. Use milvus.has_table to verify whether the table exists. You also can check if the table name " + " does not exist. Use milvus.has_table to verify whether the table exists. You also can check whether the table name " "exists."; }