This is an automated email from the ASF dual-hosted git repository. kturner pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new bfb896e3f4 fixes non overlapping file and tablet range on CloneIT (#5591) bfb896e3f4 is described below commit bfb896e3f4491a2ec1958fad2ae2147ff5f16f13 Author: Keith Turner <ktur...@apache.org> AuthorDate: Thu May 29 16:22:05 2025 -0400 fixes non overlapping file and tablet range on CloneIT (#5591) CloneIT was directly inserting metadata table file entries with row ranges that did not overlap the tablet range. After the changes in #5340 this caused the metadata reads to fail. Modfied the test to insert file w/ ranges that overlap. --- test/src/main/java/org/apache/accumulo/test/CloneIT_SimpleSuite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/main/java/org/apache/accumulo/test/CloneIT_SimpleSuite.java b/test/src/main/java/org/apache/accumulo/test/CloneIT_SimpleSuite.java index c9f3ca9601..45e934430a 100644 --- a/test/src/main/java/org/apache/accumulo/test/CloneIT_SimpleSuite.java +++ b/test/src/main/java/org/apache/accumulo/test/CloneIT_SimpleSuite.java @@ -452,8 +452,8 @@ public class CloneIT_SimpleSuite extends SharedMiniClusterBase { // Pass in up to 3 arguments of infinite ranges to test non-ranged files Arguments.of(new Range(), new Range(), new Range()), // For second run pass in up to 3 arguments with the first two non-infinite ranges - Arguments.of(new Range(null, false, "row_0", true), - new Range("row_0", false, "row_1", true), new Range())); + Arguments.of(new Range(null, false, "row_0", true), new Range("row_0", false, null, true), + new Range())); } }