Skip to content

Commit 08d9242

Browse files
zstanalamar
authored andcommitted
IGNITE-13838 IgniteSqlSplitterSelfTest fixes various tests - Fixes #8565.
Signed-off-by: Ilya Kasnacheev <[email protected]>
1 parent 1f108fb commit 08d9242

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/IgniteSqlSplitterSelfTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656
import org.junit.Test;
5757
import org.springframework.util.StringUtils;
5858

59+
import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
60+
5961
/**
6062
* Tests for correct distributed partitioned queries.
6163
*/
@@ -94,6 +96,7 @@ private static CacheConfiguration cacheConfig(String name, boolean partitioned,
9496
.setName(name)
9597
.setCacheMode(partitioned ? CacheMode.PARTITIONED : CacheMode.REPLICATED)
9698
.setAtomicityMode(CacheAtomicityMode.ATOMIC)
99+
.setWriteSynchronizationMode(FULL_SYNC)
97100
.setBackups(1)
98101
.setIndexedTypes(idxTypes);
99102
}

0 commit comments

Comments
 (0)