diff --git a/internal/proxy/search_util.go b/internal/proxy/search_util.go index 559a96cfe23de..f92bff5cd0edd 100644 --- a/internal/proxy/search_util.go +++ b/internal/proxy/search_util.go @@ -339,11 +339,12 @@ func convertHybridSearchToSearch(req *milvuspb.HybridSearchRequest) *milvuspb.Se for _, sub := range req.GetRequests() { subReq := &milvuspb.SubSearchRequest{ - Dsl: sub.GetDsl(), - PlaceholderGroup: sub.GetPlaceholderGroup(), - DslType: sub.GetDslType(), - SearchParams: sub.GetSearchParams(), - Nq: sub.GetNq(), + Dsl: sub.GetDsl(), + PlaceholderGroup: sub.GetPlaceholderGroup(), + DslType: sub.GetDslType(), + SearchParams: sub.GetSearchParams(), + Nq: sub.GetNq(), + ExprTemplateValues: sub.GetExprTemplateValues(), } ret.SubReqs = append(ret.SubReqs, subReq) }