/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.facebook.presto.spi.type; import com.facebook.presto.spi.ConnectorSession; import com.facebook.presto.spi.block.Block; import com.facebook.presto.spi.block.BlockBuilder; import com.fasterxml.jackson.annotation.JsonCreator; import io.airlift.slice.Slice; import static com.facebook.presto.spi.type.HyperLogLogType.HYPER_LOG_LOG; import static com.facebook.presto.spi.type.TypeSignature.parseTypeSignature; public class P4HyperLogLogType extends AbstractVariableWidthType { public static final P4HyperLogLogType P4_HYPER_LOG_LOG = new P4HyperLogLogType(); @JsonCreator public P4HyperLogLogType() { super(parseTypeSignature(StandardTypes.P4_HYPER_LOG_LOG), Slice.class); } @Override public void appendTo(Block block, int position, BlockBuilder blockBuilder) { HYPER_LOG_LOG.appendTo(block, position, blockBuilder); } @Override public Slice getSlice(Block block, int position) { return HYPER_LOG_LOG.getSlice(block, position); } @Override public void writeSlice(BlockBuilder blockBuilder, Slice value) { HYPER_LOG_LOG.writeSlice(blockBuilder, value); } @Override public void writeSlice(BlockBuilder blockBuilder, Slice value, int offset, int length) { HYPER_LOG_LOG.writeSlice(blockBuilder, value, offset, length); } @Override public Object getObjectValue(ConnectorSession session, Block block, int position) { return HYPER_LOG_LOG.getObjectValue(session, block, position); } }