Skip to content
Merged
Changes from all commits
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
12 changes: 12 additions & 0 deletions pkg/store/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -2978,6 +2978,12 @@ func toPostingGroup(ctx context.Context, lvalsFn func(name string) ([]string, er
return nil, nil, err
}

// If the matcher is ="" or =~"", it is the same as removing all values for the label.
// We can skip calling `Matches` here.
if m.Value == "" && (m.Type == labels.MatchEqual || m.Type == labels.MatchRegexp) {
return newPostingGroup(true, m.Name, nil, vals), vals, nil
}

for i, val := range vals {
if (i+1)%checkContextEveryNIterations == 0 && ctx.Err() != nil {
return nil, nil, ctx.Err()
Expand Down Expand Up @@ -3006,6 +3012,12 @@ func toPostingGroup(ctx context.Context, lvalsFn func(name string) ([]string, er
return nil, nil, err
}

// If the matcher is !="" or !~"", it is the same as adding all values for the label.
// We can skip calling `Matches` here.
if m.Value == "" && (m.Type == labels.MatchNotEqual || m.Type == labels.MatchNotRegexp) {
return newPostingGroup(false, m.Name, vals, nil), vals, nil
}

var toAdd []string
for i, val := range vals {
if (i+1)%checkContextEveryNIterations == 0 && ctx.Err() != nil {
Expand Down
Loading