This is an automated email from the ASF dual-hosted git repository. krathbun pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new bbf5910bcb Implement estimate overlapping entries for BloomFilterLayer (#5518) bbf5910bcb is described below commit bbf5910bcbc1c683bab08a2f0d3d8f347c19805b Author: DarwinKatanamp <81105805+darwinkatan...@users.noreply.github.com> AuthorDate: Wed May 28 18:31:04 2025 +0200 Implement estimate overlapping entries for BloomFilterLayer (#5518) --- core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java b/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java index e021f19748..7650ef8572 100644 --- a/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java +++ b/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java @@ -431,7 +431,7 @@ public class BloomFilterLayer { @Override public long estimateOverlappingEntries(KeyExtent extent) throws IOException { - throw new UnsupportedOperationException(); + return reader.estimateOverlappingEntries(extent); } @Override