public void testAvgLongRepeatConcatValues () throws HiveException {
testAggregateLongIterable ("avg",
new FakeVectorRowBatchFromConcat(
new FakeVectorRowBatchFromRepeats(
new Long[] {19L}, 10, 2),
new FakeVectorRowBatchFromLongIterables(
3,
Arrays.asList(new Long[]{13L, 7L, 23L, 29L}))),
(double) (19L*10L + 13L + 7L + 23L +29L) / (double) 14 );
}