You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2020/12/11 16:10:54 UTC

[ignite] branch master updated: IGNITE-13838 IgniteSqlSplitterSelfTest fixes various tests - Fixes #8565.

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

ilyak 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 08d9242  IGNITE-13838 IgniteSqlSplitterSelfTest fixes various tests - Fixes #8565.
08d9242 is described below

commit 08d9242faba469e370ccb3c00521c02eafbf1b84
Author: zstan <st...@gmail.com>
AuthorDate: Fri Dec 11 19:10:18 2020 +0300

    IGNITE-13838 IgniteSqlSplitterSelfTest fixes various tests - Fixes #8565.
    
    Signed-off-by: Ilya Kasnacheev <il...@gmail.com>
---
 .../ignite/internal/processors/query/IgniteSqlSplitterSelfTest.java    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSplitterSelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSplitterSelfTest.java
index 15dd2e1..8bc1f63 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSplitterSelfTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSplitterSelfTest.java
@@ -56,6 +56,8 @@ import org.junit.Ignore;
 import org.junit.Test;
 import org.springframework.util.StringUtils;
 
+import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
+
 /**
  * Tests for correct distributed partitioned queries.
  */
@@ -94,6 +96,7 @@ public class IgniteSqlSplitterSelfTest extends AbstractIndexingCommonTest {
             .setName(name)
             .setCacheMode(partitioned ? CacheMode.PARTITIONED : CacheMode.REPLICATED)
             .setAtomicityMode(CacheAtomicityMode.ATOMIC)
+            .setWriteSynchronizationMode(FULL_SYNC)
             .setBackups(1)
             .setIndexedTypes(idxTypes);
     }