Type type = getSequenceBlock(0, 10).getType();
Block nullValueBlock = type.createBlockBuilder(new BlockBuilderStatus())
.appendNull()
.build();
Block block = new RunLengthEncodedBlock(nullValueBlock, 10);
testAggregation(getExpectedValueIncludingNulls(0, 0, 10), block);
}