use of org.apache.geode.cache.query.functional.GroupByTestInterface in project geode by apache.
the class GroupByDUnitImpl method testDistinctCountWithoutGroupBy.
@Override
@Test
public void testDistinctCountWithoutGroupBy() 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();
GroupByTestInterface test = createTestInstance();
test.testDistinctCountWithoutGroupBy();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.query.functional.GroupByTestInterface in project geode by apache.
the class GroupByDUnitImpl method testAggregateFuncCountStar.
@Override
@Test
public void testAggregateFuncCountStar() 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();
GroupByTestInterface test = createTestInstance();
test.testAggregateFuncCountStar();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.query.functional.GroupByTestInterface in project geode by apache.
the class GroupByDUnitImpl method testComplexValueAggregateFuncAvgDistinct.
@Override
@Test
public void testComplexValueAggregateFuncAvgDistinct() 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();
GroupByTestInterface test = createTestInstance();
test.testComplexValueAggregateFuncAvgDistinct();
this.closeCache(vm0, vm1, vm2, vm3);
}
use of org.apache.geode.cache.query.functional.GroupByTestInterface in project geode by apache.
the class GroupByDUnitImpl method testAggregateFuncMin.
@Override
@Test
public void testAggregateFuncMin() 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();
GroupByTestInterface test = createTestInstance();
test.testAggregateFuncMin();
this.closeCache(vm0, vm1, vm2, vm3);
}
Aggregations