This is an automated email from the ASF dual-hosted git repository. cshannon pushed a change to branch elasticity in repository https://gitbox.apache.org/repos/asf/accumulo.git
from 7139931de4 adds test to cover all conditional updates and fixes bug (#4624) add 53683e4701 Implement estimateOverlappingEntries in fenced files (#4626) new d7fcb8493a Merge branch 'main' into elasticity The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/accumulo/core/client/rfile/RFile.java | 4 +- .../apache/accumulo/core/dataImpl/KeyExtent.java | 61 ++++++++++++++++ .../org/apache/accumulo/core/file/rfile/RFile.java | 8 +- .../accumulo/core/metadata/AbstractTabletFile.java | 48 ++---------- .../accumulo/core/metadata/StoredTabletFile.java | 7 +- .../apache/accumulo/core/util/RowRangeUtil.java | 85 ++++++++++++++++++++++ .../core/client/rfile/RFileClientTest.java | 11 +-- .../apache/accumulo/core/data/KeyExtentTest.java | 43 +++++++++++ .../core/file/rfile/AbstractRFileTest.java | 37 +++++++++- .../accumulo/core/file/rfile/FencedRFileTest.java | 72 +++++++++++++++++- .../apache/accumulo/core/file/rfile/RFileTest.java | 33 +++++++++ .../metadata/schema/ReferencedTabletFileTest.java | 22 ++++-- .../core/metadata/schema/TabletMetadataTest.java | 12 +-- .../constraints/MetadataConstraintsTest.java | 15 ++-- .../java/org/apache/accumulo/test/CloneIT.java | 3 +- .../java/org/apache/accumulo/test/VolumeIT.java | 7 +- 16 files changed, 389 insertions(+), 79 deletions(-) create mode 100644 core/src/main/java/org/apache/accumulo/core/util/RowRangeUtil.java