Package com.facebook.presto.operator.ChannelSet

Examples of com.facebook.presto.operator.ChannelSet.ChannelSetBuilder


        public void process(Block block)
        {
            checkNotNull(block, "block is null");

            if (dictionaryBuilder == null) {
                dictionaryBuilder = new ChannelSetBuilder(block.getType(), MAX_UNIQUE_COUNT, null);
            }

            for (int position = 0; position < block.getPositionCount(); position++) {
                // update run length stats
                Block value = block.getSingleValueBlock(position);
View Full Code Here


            int expectedPositions)
    {
        this.operatorContext = checkNotNull(operatorContext, "operatorContext is null");
        this.setSupplier = checkNotNull(setSupplier, "setProvider is null");
        this.setChannel = setChannel;
        this.channelSetBuilder = new ChannelSetBuilder(
                setSupplier.getType(),
                expectedPositions,
                checkNotNull(operatorContext, "operatorContext is null"));
    }
View Full Code Here

            int expectedPositions)
    {
        this.operatorContext = checkNotNull(operatorContext, "operatorContext is null");
        this.setSupplier = checkNotNull(setSupplier, "setProvider is null");
        this.setChannel = setChannel;
        this.channelSetBuilder = new ChannelSetBuilder(
                setSupplier.getType(),
                expectedPositions,
                checkNotNull(operatorContext, "operatorContext is null"));
    }
View Full Code Here

        public void process(Block block)
        {
            checkNotNull(block, "block is null");

            if (dictionaryBuilder == null) {
                dictionaryBuilder = new ChannelSetBuilder(type, MAX_UNIQUE_COUNT, null);
            }

            for (int position = 0; position < block.getPositionCount(); position++) {
                // update run length stats
                Block value = block.getSingleValueBlock(position);
View Full Code Here

            int expectedPositions)
    {
        this.operatorContext = checkNotNull(operatorContext, "operatorContext is null");
        this.setSupplier = checkNotNull(setSupplier, "setProvider is null");
        this.setChannel = setChannel;
        this.channelSetBuilder = new ChannelSetBuilder(
                setSupplier.getTupleInfo(),
                expectedPositions,
                checkNotNull(operatorContext, "operatorContext is null"));
    }
View Full Code Here

            int expectedPositions)
    {
        this.operatorContext = checkNotNull(operatorContext, "operatorContext is null");
        this.setSupplier = checkNotNull(setSupplier, "setProvider is null");
        this.setChannel = setChannel;
        this.channelSetBuilder = new ChannelSetBuilder(
                setSupplier.getType(),
                expectedPositions,
                checkNotNull(operatorContext, "operatorContext is null"));
    }
View Full Code Here

TOP

Related Classes of com.facebook.presto.operator.ChannelSet.ChannelSetBuilder

Copyright © 2018 www.massapicom. 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.