hanyuzheng7 commented on code in PR #14477:
URL: https://github.com/apache/kafka/pull/14477#discussion_r1364832374
##########
streams/src/test/java/org/apache/kafka/streams/integration/IQv2StoreIntegrationTest.java:
##########
@@ -1586,12 +1593,15 @@ public <V> void shouldHandleKeyQuery(
public <V> void shouldHandleRangeQuery(
final Optional<Integer> lower,
final Optional<Integer> upper,
+ final boolean isKeyAscending,
final Function<V, Integer> valueExtactor,
- final Set<Integer> expectedValue) {
+ final List<Integer> expectedValue) {
Review Comment:
ok, I will update it.
##########
streams/src/test/java/org/apache/kafka/streams/integration/IQv2StoreIntegrationTest.java:
##########
@@ -1604,9 +1614,10 @@ public <V> void shouldHandleRangeQuery(
if (result.getGlobalResult() != null) {
fail("global tables aren't implemented");
} else {
- final Set<Integer> actualValue = new HashSet<>();
+ final List<Integer> actualValue = new ArrayList<>();
Review Comment:
ok, I will update it.
--
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]