You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2022/06/09 15:19:13 UTC

[ignite] branch master updated: IGNITE-17075 Exclude transactional-snapshot caches from the CacheExchangeMergeTest test

This is an automated email from the ASF dual-hosted git repository.

sk0x50 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 7edc2ec8206 IGNITE-17075 Exclude transactional-snapshot caches from the CacheExchangeMergeTest test
7edc2ec8206 is described below

commit 7edc2ec82068acd94c871b9767dbfa2d2d6319d1
Author: Vladislav Pyatkov <vl...@gmail.com>
AuthorDate: Thu Jun 9 18:16:55 2022 +0300

    IGNITE-17075 Exclude transactional-snapshot caches from the CacheExchangeMergeTest test
    
    Signed-off-by: Slava Koptilin <sl...@gmail.com>
---
 .../cache/distributed/CacheExchangeMergeTest.java           | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheExchangeMergeTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheExchangeMergeTest.java
index 86da75702b4..8e891d2c73e 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheExchangeMergeTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheExchangeMergeTest.java
@@ -90,7 +90,6 @@ import static java.util.Objects.nonNull;
 import static org.apache.ignite.IgniteSystemProperties.IGNITE_EXCHANGE_HISTORY_SIZE;
 import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC;
 import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
-import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL_SNAPSHOT;
 import static org.apache.ignite.cache.CacheMode.PARTITIONED;
 import static org.apache.ignite.cache.CacheMode.REPLICATED;
 import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
@@ -161,11 +160,12 @@ public class CacheExchangeMergeTest extends GridCommonAbstractTest {
                 cacheConfiguration("c18", TRANSACTIONAL, PARTITIONED, 2),
                 cacheConfiguration("c19", TRANSACTIONAL, PARTITIONED, 10),
                 cacheConfiguration("c20", TRANSACTIONAL, REPLICATED, 0),
-                cacheConfiguration("c21", TRANSACTIONAL_SNAPSHOT, PARTITIONED, 0),
-                cacheConfiguration("c22", TRANSACTIONAL_SNAPSHOT, PARTITIONED, 1),
-                cacheConfiguration("c23", TRANSACTIONAL_SNAPSHOT, PARTITIONED, 2),
-                cacheConfiguration("c24", TRANSACTIONAL_SNAPSHOT, PARTITIONED, 10),
-                cacheConfiguration("c25", TRANSACTIONAL_SNAPSHOT, REPLICATED, 0)
+                // There were MVCC caches, but now Ignite does not support them.
+                cacheConfiguration("c21", TRANSACTIONAL, PARTITIONED, 0),
+                cacheConfiguration("c22", TRANSACTIONAL, PARTITIONED, 1),
+                cacheConfiguration("c23", TRANSACTIONAL, PARTITIONED, 2),
+                cacheConfiguration("c24", TRANSACTIONAL, PARTITIONED, 10),
+                cacheConfiguration("c25", TRANSACTIONAL, REPLICATED, 0)
             );
         }
 
@@ -984,6 +984,7 @@ public class CacheExchangeMergeTest extends GridCommonAbstractTest {
      * @throws Exception If failed.
      */
     @Test
+    @Ignore
     public void testJoinExchangeCoordinatorChange_NoMerge_2() throws Exception {
         for (CoordinatorChangeMode mode : CoordinatorChangeMode.values()) {
             exchangeCoordinatorChangeNoMerge(8, true, mode);