vldpyatkov commented on a change in pull request #149:
URL: https://github.com/apache/ignite-3/pull/149#discussion_r642261430
##########
File path:
modules/metastorage-client/src/integrationTest/java/org/apache/ignite/internal/metastorage/client/ITMetaStorageServiceTest.java
##########
@@ -587,13 +587,11 @@ public void testRangeWitKeyTo() throws Exception {
MetaStorageService metaStorageSvc = prepareMetaStorage(
new AbstractKeyValueStorage() {
- @Override public
Cursor<org.apache.ignite.internal.metastorage.server.Entry> range(byte[]
keyFrom, byte[] keyTo, long revUpperBound) {
+ @Override public
Cursor<org.apache.ignite.internal.metastorage.server.Entry> range(byte[]
keyFrom, byte[] keyTo) {
assertArrayEquals(expKeyFrom.bytes(), keyFrom);
assertArrayEquals(expKeyTo.bytes(), keyTo);
- assertEquals(LATEST_REVISION, revUpperBound);
Review comment:
Because we have no revUpperBound here.
--
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]