Package org.apache.druid.frame.key
Class ClusterByPartition
- java.lang.Object
-
- org.apache.druid.frame.key.ClusterByPartition
-
public class ClusterByPartition extends Object
Boundaries of a partition marked by start and end keys. The keys are generally described by aClusterByinstance that is not referenced here. (It is generally provided contextually.) Often, this object is part of a full partition set represented byClusterByPartitions.
-
-
Constructor Summary
Constructors Constructor Description ClusterByPartition(RowKey start, RowKey end)
-
-
-
Method Detail
-
getStart
@Nullable public RowKey getStart()
Get the starting key for this range. It is inclusive (the range *does* contain this key). Null means the range is unbounded at the start.
-
getEnd
@Nullable public RowKey getEnd()
Get the ending key for this range. It is exclusive (the range *does not* contain this key). Null means the range is unbounded at the end.
-
-