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
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ private void collectsFromSingleBucketCase(LongKeyedBucketOrds ords) {
}
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/58353")
public void testCollectsFromManyBuckets() {
try (LongKeyedBucketOrds ords = LongKeyedBucketOrds.build(bigArrays, false)) {
// Test a few explicit values
Expand Down Expand Up @@ -183,7 +184,7 @@ private class OwningBucketOrdAndValue {

@Override
public String toString() {
return owningBucketOrd + "/" + value;
return owningBucketOrd + "/" + value;
}

@Override
Expand All @@ -192,7 +193,7 @@ public boolean equals(Object obj) {
return false;
}
OwningBucketOrdAndValue other = (OwningBucketOrdAndValue) obj;
return owningBucketOrd == other.owningBucketOrd && value == other.value;
return owningBucketOrd == other.owningBucketOrd && value == other.value;
}

@Override
Expand Down