mirror of https://github.com/milvus-io/milvus.git
Change strange expression err hint (#6128)
Signed-off-by: fishpenguin <kun.yu@zilliz.com>pull/6172/head
parent
9adea12df3
commit
7df4bf8d93
|
@ -1562,7 +1562,8 @@ func (node *Proxy) Query(ctx context.Context, request *milvuspb.QueryRequest) (*
|
|||
}, nil
|
||||
}
|
||||
|
||||
err = errors.New("Not implemented because:" + err.Error())
|
||||
errMsg := "Invalid expression!"
|
||||
err = errors.New(errMsg)
|
||||
return &milvuspb.QueryResults{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
|
|
Loading…
Reference in New Issue