org.apache.druid.segment.nested.NestedCommonFormatColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-processing Show documentation
Show all versions of druid-processing Show documentation
A module that is everything required to understands Druid Segments
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.druid.segment.nested;
import org.apache.druid.data.input.impl.DimensionSchema;
import org.apache.druid.java.util.common.ISE;
import org.apache.druid.segment.AutoTypeColumnMerger;
import org.apache.druid.segment.AutoTypeColumnSchema;
import org.apache.druid.segment.DimensionHandler;
import org.apache.druid.segment.NestedCommonFormatColumnHandler;
import org.apache.druid.segment.column.BaseColumn;
import org.apache.druid.segment.column.ColumnCapabilities;
import org.apache.druid.segment.column.ColumnCapabilitiesImpl;
import org.apache.druid.segment.column.ColumnFormat;
import org.apache.druid.segment.column.ColumnType;
import org.apache.druid.segment.column.StringUtf8DictionaryEncodedColumn;
import org.apache.druid.segment.data.Indexed;
import org.apache.druid.segment.serde.NestedCommonFormatColumnPartSerde;
import javax.annotation.Nullable;
import java.util.SortedMap;
import java.util.TreeMap;
/**
* Base implementation for columns created with {@link AutoTypeColumnSchema} and handled with
* {@link NestedCommonFormatColumnHandler} to allow ease of merge via
* {@link AutoTypeColumnMerger} by providing a common implementation. All columns are read with
* {@link NestedCommonFormatColumnPartSerde}
*
* @see ScalarDoubleColumn
* @see ScalarLongColumn
* @see StringUtf8DictionaryEncodedColumn
* @see VariantColumn
* @see CompressedNestedDataComplexColumn
*/
public interface NestedCommonFormatColumn extends BaseColumn
{
default Indexed getStringDictionary()
{
return Indexed.empty();
}
default Indexed getLongDictionary()
{
return Indexed.empty();
}
default Indexed getDoubleDictionary()
{
return Indexed.empty();
}
default Indexed