Examples of BooleanBigArray


Examples of com.facebook.presto.util.array.BooleanBigArray

        private final Optional<Integer> sampleWeightChannel;

        public CustomSumGroupedAccumulator(int channel, Optional<Integer> maskChannel, Optional<Integer> sampleWeightChannel)
        {
            this.channel = channel;
            this.notNull = new BooleanBigArray();
            this.sums = new LongBigArray();
            this.maskChannel = maskChannel;
            this.sampleWeightChannel = sampleWeightChannel;
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public LongMaxGroupedAccumulator(int valueChannel)
        {
            super(valueChannel, SINGLE_LONG, SINGLE_LONG, Optional.<Integer>absent());

            this.notNull = new BooleanBigArray();
            this.maxValues = new LongBigArray(Long.MIN_VALUE);
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public LongMinGroupedAccumulator(int valueChannel)
        {
            super(valueChannel, SINGLE_LONG, SINGLE_LONG, Optional.<Integer>absent());

            this.notNull = new BooleanBigArray();

            this.minValues = new LongBigArray(Long.MAX_VALUE);
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public LongSumGroupedAccumulator(int valueChannel, Optional<Integer> maskChannel)
        {
            super(valueChannel, SINGLE_LONG, SINGLE_LONG, maskChannel);

            this.notNull = new BooleanBigArray();

            this.sums = new LongBigArray();
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        private final DoubleBigArray sums;

        public DoubleSumGroupedAccumulator(int valueChannel, Optional<Integer> maskChannel)
        {
            super(valueChannel, SINGLE_DOUBLE, SINGLE_DOUBLE, maskChannel);
            this.notNull = new BooleanBigArray();
            this.sums = new DoubleBigArray();
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public DoubleMaxGroupedAccumulator(int valueChannel)
        {
            // Min/max are not effected by distinct, so ignore it.
            super(valueChannel, SINGLE_DOUBLE, SINGLE_DOUBLE, Optional.<Integer>absent());

            this.notNull = new BooleanBigArray();

            this.maxValues = new DoubleBigArray(Double.NEGATIVE_INFINITY);
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public DoubleMinGroupedAccumulator(int valueChannel)
        {
            super(valueChannel, SINGLE_DOUBLE, SINGLE_DOUBLE, Optional.<Integer>absent());

            this.notNull = new BooleanBigArray();

            this.minValues = new DoubleBigArray(Double.POSITIVE_INFINITY);
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public DoubleMinGroupedAccumulator(int valueChannel)
        {
            super(valueChannel, DOUBLE, DOUBLE, Optional.<Integer>absent(), Optional.<Integer>absent());

            this.notNull = new BooleanBigArray();

            this.minValues = new DoubleBigArray(Double.POSITIVE_INFINITY);
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        public LongMinGroupedAccumulator(int valueChannel)
        {
            super(valueChannel, BIGINT, BIGINT, Optional.<Integer>absent(), Optional.<Integer>absent());

            this.notNull = new BooleanBigArray();

            this.minValues = new LongBigArray(Long.MAX_VALUE);
        }
View Full Code Here

Examples of com.facebook.presto.util.array.BooleanBigArray

        private final DoubleBigArray sums;

        public DoubleSumGroupedAccumulator(int valueChannel, Optional<Integer> maskChannel, Optional<Integer> sampleWeightChannel)
        {
            super(valueChannel, DOUBLE, DOUBLE, maskChannel, sampleWeightChannel);
            this.notNull = new BooleanBigArray();
            this.sums = new DoubleBigArray();
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.