hellishfire commented on code in PR #43968:
URL: https://github.com/apache/arrow/pull/43968#discussion_r1747237959
##########
java/vector/src/test/java/org/apache/arrow/vector/compare/TestRangeEqualsVisitor.java:
##########
@@ -434,25 +434,39 @@ public void testStructVectorRangeEquals() {
NullableStructWriter writer1 = vector1.getWriter();
writer1.allocate();
+ writeStructVector(writer1, 0, 0L);
writeStructVector(writer1, 1, 10L);
writeStructVector(writer1, 2, 20L);
writeStructVector(writer1, 3, 30L);
writeStructVector(writer1, 4, 40L);
writeStructVector(writer1, 5, 50L);
- writer1.setValueCount(5);
+ writer1.setValueCount(6);
Review Comment:
I just want to improve the test case by making the left&right index in the
range different.
This is better than the original case where the left & right index are
identical.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]