liyafan82 commented on a change in pull request #7100:
URL: https://github.com/apache/arrow/pull/7100#discussion_r420510750
##########
File path:
java/vector/src/test/java/org/apache/arrow/vector/ITTestLargeVector.java
##########
@@ -131,16 +139,17 @@ private static void testLargeDecimalVector() {
assertEquals(0, buf.getLong(8));
if ((i + 1) % 10000 == 0) {
- System.out.println("Successfully read " + (i + 1) + " values");
+ logger.debug("Successfully read {} values", i + 1);
}
}
- System.out.println("Successfully read " + vecLength + " values");
+ logger.info("Successfully read {} values", vecLength);
}
- System.out.println("Successfully released the large vector.");
+ logger.info("Successfully released the large vector.");
}
- private static void testLargeFixedSizeBinaryVector() {
- System.out.println("Testing large fixed size binary vector.");
+ @Test
+ public void testLargeFixedSizeBinaryVector() {
+ logger.info("Testing large fixed size binary vector.");
Review comment:
Could you please explain the difference between this and an ordinary
test case? I am curious how it managed to pass the restriction of
arrow.vector.max_allocation_bytes?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]