hanyuzheng7 commented on code in PR #14570:
URL: https://github.com/apache/kafka/pull/14570#discussion_r1396802119
##########
streams/src/main/java/org/apache/kafka/streams/state/internals/MeteredVersionedKeyValueStore.java:
##########
@@ -195,17 +195,15 @@ public <R> QueryResult<R> query(final Query<R> query,
final PositionBound positi
return result;
}
- @Override
- protected <R> QueryResult<R> runRangeQuery(final Query<R> query,
- final PositionBound
positionBound,
- final QueryConfig config) {
+ private <R> QueryResult<R> runRangeQuery(final Query<R> query,
+ final PositionBound
positionBound,
+ final QueryConfig config) {
// throw exception for now to reserve the ability to implement
this in the future
// without clashing with users' custom implementations in the
meantime
throw new UnsupportedOperationException("Versioned stores do not
support RangeQuery queries at this time.");
}
- @Override
- protected <R> QueryResult<R> runKeyQuery(final Query<R> query,
+ private <R> QueryResult<R> runKeyQuery(final Query<R> query,
final PositionBound
positionBound,
Review Comment:
fixed 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]