Class ColumnIndexCreationInfo
- java.lang.Object
-
- org.apache.pinot.segment.spi.creator.ColumnIndexCreationInfo
-
- All Implemented Interfaces:
Serializable
public class ColumnIndexCreationInfo extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ColumnIndexCreationInfo(ColumnStatistics columnStatistics, boolean createDictionary, boolean useVarLengthDictionary, boolean isAutoGenerated, Object defaultNullValue)
-
Method Summary
Modifier and Type Method Description ObjectgetDefaultNullValue()intgetDistinctValueCount()intgetLengthOfLongestEntry()ObjectgetMax()intgetMaxNumberOfMultiValueElements()intgetMaxRowLengthInBytes()ObjectgetMin()intgetNumPartitions()PartitionFunctiongetPartitionFunction()Map<String,String>getPartitionFunctionConfig()Set<Integer>getPartitions()ObjectgetSortedUniqueElementsArray()intgetTotalNumberOfEntries()booleanisAutoGenerated()booleanisCreateDictionary()booleanisSorted()booleanisUseVarLengthDictionary()
-
-
-
Constructor Detail
-
ColumnIndexCreationInfo
public ColumnIndexCreationInfo(ColumnStatistics columnStatistics, boolean createDictionary, boolean useVarLengthDictionary, boolean isAutoGenerated, Object defaultNullValue)
-
-
Method Detail
-
isCreateDictionary
public boolean isCreateDictionary()
-
isUseVarLengthDictionary
public boolean isUseVarLengthDictionary()
-
getMin
public Object getMin()
-
getMax
public Object getMax()
-
getSortedUniqueElementsArray
public Object getSortedUniqueElementsArray()
-
getDistinctValueCount
public int getDistinctValueCount()
-
isSorted
public boolean isSorted()
-
getTotalNumberOfEntries
public int getTotalNumberOfEntries()
-
getMaxNumberOfMultiValueElements
public int getMaxNumberOfMultiValueElements()
-
getMaxRowLengthInBytes
public int getMaxRowLengthInBytes()
-
isAutoGenerated
public boolean isAutoGenerated()
-
getDefaultNullValue
public Object getDefaultNullValue()
-
getLengthOfLongestEntry
public int getLengthOfLongestEntry()
-
getPartitionFunction
public PartitionFunction getPartitionFunction()
-
getNumPartitions
public int getNumPartitions()
-
-