-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
store: Added missing matcher logic for negative matchers. #839
Conversation
pkg/store/bucket_e2e_test.go
Outdated
@@ -134,10 +134,44 @@ func testBucketStore_e2e(t testing.TB, ctx context.Context, s *storeSuite) { | |||
req *storepb.SeriesRequest | |||
expected [][]storepb.Label | |||
}{ | |||
//{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debug in progress - something does not work properly with allWithout
function.
6c5ec34
to
931b5bc
Compare
931b5bc
to
0f2637f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks sane ... tests run and pass 👍
@@ -1178,32 +1178,33 @@ func (r *bucketIndexReader) lookupSymbol(o uint32) (string, error) { | |||
// chunk where the series contains the matching label-value pair for a given block of data. Postings can be fetched by | |||
// single label name=value. | |||
func (r *bucketIndexReader) ExpandedPostings(ms []labels.Matcher) ([]uint64, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit - Fix comment above Postings
> ExtendedPostings
Needed to refactor logic to add "posting groups". Signed-off-by: Bartek Plotka <bwplotka@gmail.com>
0f2637f
to
18a3a88
Compare
Needed to refactor logic to add "posting groups".
Some debug in progress, but overall showing the direction (:
Fixes: #834
Signed-off-by: Bartek Plotka bwplotka@gmail.com