use of org.apache.geode.cache.Cache in project geode by apache.
the class OrderByPartitionedDUnitTest method testLimitNotAppliedIfOrderByNotUsingIndex.
@Test
public void testLimitNotAppliedIfOrderByNotUsingIndex() throws Exception {
Host host = Host.getHost(0);
final VM vm0 = host.getVM(0);
final VM vm1 = host.getVM(1);
final VM vm2 = host.getVM(2);
final VM vm3 = host.getVM(3);
Cache cache = this.getCache();
OrderByPartitionedJUnitTest test = createTestInstance();
test.testLimitNotAppliedIfOrderByNotUsingIndex();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.Cache in project geode by apache.
the class OrderByPartitionedDUnitTest method testMultiColOrderByWithMultiIndexResultProjection.
@Test
public void testMultiColOrderByWithMultiIndexResultProjection() throws Exception {
Host host = Host.getHost(0);
final VM vm0 = host.getVM(0);
final VM vm1 = host.getVM(1);
final VM vm2 = host.getVM(2);
final VM vm3 = host.getVM(3);
Cache cache = this.getCache();
OrderByPartitionedJUnitTest test = createTestInstance();
test.testMultiColOrderByWithMultiIndexResultProjection();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.Cache in project geode by apache.
the class OrderByPartitionedDUnitTest method testMultiColOrderByWithIndexResultWithProjection.
@Test
public void testMultiColOrderByWithIndexResultWithProjection() throws Exception {
Host host = Host.getHost(0);
final VM vm0 = host.getVM(0);
final VM vm1 = host.getVM(1);
final VM vm2 = host.getVM(2);
final VM vm3 = host.getVM(3);
Cache cache = this.getCache();
OrderByPartitionedJUnitTest test = createTestInstance();
test.testMultiColOrderByWithIndexResultWithProjection();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.Cache in project geode by apache.
the class OrderByPartitionedDUnitTest method testMultiColOrderByWithMultiIndexResultDefaultProjection.
@Test
public void testMultiColOrderByWithMultiIndexResultDefaultProjection() throws Exception {
Host host = Host.getHost(0);
final VM vm0 = host.getVM(0);
final VM vm1 = host.getVM(1);
final VM vm2 = host.getVM(2);
final VM vm3 = host.getVM(3);
Cache cache = this.getCache();
OrderByPartitionedJUnitTest test = createTestInstance();
test.testMultiColOrderByWithMultiIndexResultDefaultProjection();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.Cache in project geode by apache.
the class OrderByPartitionedDUnitTest method testOrderedResultsPartitionedRegion_Bug43514_2.
@Test
public void testOrderedResultsPartitionedRegion_Bug43514_2() throws Exception {
Host host = Host.getHost(0);
final VM vm0 = host.getVM(0);
final VM vm1 = host.getVM(1);
final VM vm2 = host.getVM(2);
final VM vm3 = host.getVM(3);
Cache cache = this.getCache();
OrderByPartitionedJUnitTest test = createTestInstance();
test.testOrderedResultsPartitionedRegion_Bug43514_2();
this.closeCache(vm0, vm1, vm2, vm3);
}
Aggregations