public BooleanMinGroupedAccumulator(int valueChannel)
{
// Min/max are not effected by distinct, so ignore it.
super(valueChannel, SINGLE_BOOLEAN, SINGLE_BOOLEAN, Optional.<Integer>absent(), Optional.<Integer>absent());
this.maxValues = new ByteBigArray();
}