Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix searchPlan metricType modified concurrently #30227

Merged
merged 7 commits into from
Jan 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix code check
Signed-off-by: xige-16 <xi.ge@zilliz.com>
  • Loading branch information
xige-16 committed Jan 25, 2024
commit 02500a8852c47ad2cfe92b4bda5a7685e5aceb09
2 changes: 1 addition & 1 deletion internal/querynodev2/segments/plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func NewSearchRequest(ctx context.Context, collection *Collection, req *querypb.
plan: plan,
cPlaceholderGroup: cPlaceholderGroup,
msgID: req.GetReq().GetBase().GetMsgID(),
searchFieldID: fieldID,
searchFieldID: int64(fieldID),
mvccTimestamp: req.GetReq().GetMvccTimestamp(),
}

Expand Down
Loading