hanyuzheng7 commented on code in PR #14477:
URL: https://github.com/apache/kafka/pull/14477#discussion_r1349442309
##########
streams/src/test/java/org/apache/kafka/streams/integration/IQv2StoreIntegrationTest.java:
##########
@@ -816,29 +816,65 @@ private <T> void shouldHandleRangeQueries(final
Function<T, Integer> extractor)
shouldHandleRangeQuery(
Optional.of(1),
Optional.of(3),
+ true,
extractor,
- mkSet(1, 2, 3)
+ Arrays.asList(2, 1, 3)
);
shouldHandleRangeQuery(
Optional.of(1),
Optional.empty(),
+ true,
extractor,
- mkSet(1, 2, 3)
+ Arrays.asList(2, 1, 3)
);
shouldHandleRangeQuery(
Optional.empty(),
Optional.of(1),
+ true,
extractor,
- mkSet(0, 1)
+ Arrays.asList(0, 1)
);
shouldHandleRangeQuery(
Optional.empty(),
Optional.empty(),
+ true,
extractor,
- mkSet(0, 1, 2, 3)
+ Arrays.asList(0, 2, 1, 3)
+
Review Comment:
Yes, that look weird, I have already removed extra lines.
--
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]