You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/05/31 08:12:04 UTC

[GitHub] [ignite-3] vldpyatkov commented on a change in pull request #149: IGNITE-14773 Implement a method which can get a table or wait until i…

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:
users@infra.apache.org