use of org.apache.geode.cache.query.functional.OrderByPartitionedJUnitTest in project geode by apache.
the class OrderByPartitionedDUnitTest method testMultiColOrderByWithIndexResultDefaultProjection.
@Test
public void testMultiColOrderByWithIndexResultDefaultProjection() 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.testMultiColOrderByWithIndexResultDefaultProjection();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.query.functional.OrderByPartitionedJUnitTest in project geode by apache.
the class OrderByPartitionedDUnitTest method testOrderByWithIndexResultDefaultProjection.
@Test
public void testOrderByWithIndexResultDefaultProjection() 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.testOrderByWithIndexResultDefaultProjection();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.query.functional.OrderByPartitionedJUnitTest in project geode by apache.
the class OrderByPartitionedDUnitTest method testOrderByWithNullValuesUseIndex.
@Test
public void testOrderByWithNullValuesUseIndex() 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.testOrderByWithNullValuesUseIndex();
this.closeCache(vm0, vm1, vm2, vm3);
}
Aggregations