Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/ignite-96' into ignite-96
Browse files Browse the repository at this point in the history
Conflicts:
	modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractFullApiSelfTest.java
	modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java
	modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/GridCacheSwapScanQueryAbstractSelfTest.java
  • Loading branch information
Yakov Zhdanov committed Feb 10, 2015
1 parent cbb516d commit 7757c44
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Expand Up @@ -2987,7 +2987,7 @@ private void checkTtl(boolean inTx, boolean oldEntry) throws Exception {


final ExpiryPolicy expiry = new TouchedExpiryPolicy(new Duration(MILLISECONDS, ttl)); final ExpiryPolicy expiry = new TouchedExpiryPolicy(new Duration(MILLISECONDS, ttl));


final GridCache<String, Integer> c = cache(); final IgniteCache<String, Integer> c = jcache();


final String key = primaryKeysForCache(jcache(), 1).get(0); final String key = primaryKeysForCache(jcache(), 1).get(0);


Expand Down
Expand Up @@ -71,6 +71,16 @@ public class GridCacheAtomicClientOnlyMultiNodeFullApiSelfTest extends GridCache
return PARTITIONED_ONLY; return PARTITIONED_ONLY;
} }


/** {@inheritDoc} */
@Override public void testReaderTtlNoTx() throws Exception {
// No-op.
}

/** {@inheritDoc} */
@Override public void testReaderTtlTx() throws Exception {
// No-op.
}

/** {@inheritDoc} */ /** {@inheritDoc} */
@Override public void testSize() throws Exception { @Override public void testSize() throws Exception {
IgniteCache<String, Integer> cache = jcache(); IgniteCache<String, Integer> cache = jcache();
Expand Down
Expand Up @@ -29,7 +29,6 @@
import org.apache.ignite.testframework.*; import org.apache.ignite.testframework.*;
import org.apache.ignite.testframework.junits.common.*; import org.apache.ignite.testframework.junits.common.*;


import javax.cache.*;
import java.util.*; import java.util.*;
import java.util.concurrent.*; import java.util.concurrent.*;


Expand Down

0 comments on commit 7757c44

Please sign in to comment.