Package com.facebook.presto.block.uncompressed

Examples of com.facebook.presto.block.uncompressed.UncompressedSliceBlock


        }
        if (type == Type.DOUBLE) {
            return new UncompressedDoubleBlock(positionCount, getUncompressedSlice());
        }
        if (type == Type.VARIABLE_BINARY) {
            return new UncompressedSliceBlock(new UncompressedBlock(positionCount, tupleInfo, getUncompressedSlice()));
        }
        throw new IllegalStateException("Unsupported type " + tupleInfo.getType());
    }
View Full Code Here

TOP

Related Classes of com.facebook.presto.block.uncompressed.UncompressedSliceBlock

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.