Github user StefanRRichter commented on a diff in the pull request:
https://github.com/apache/flink/pull/5465#discussion_r169627770
--- Diff:
flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBMapState.java
---
@@ -520,7 +527,7 @@ private boolean underSameKey(byte[] rawKeyBytes) {
return false;
}
- for (int i = keyPrefixBytes.length - 1; i >=
backend.getKeyGroupPrefixBytes(); --i) {
+ for (int i = keyPrefixBytes.length - 1; --i >=
backend.getKeyGroupPrefixBytes(); ) {
--- End diff --
If you want to change like I proposed, I think you need to also remove the
`- 1` from the initialization of i. This looks like a bug now.
---