gravitino.api.rel.partitions.partitions.RangePartitionImpl

class gravitino.api.rel.partitions.partitions.RangePartitionImpl(name: str, upper: Literal[Any], lower: Literal[Any], properties: Dict[str, str] | None)

Bases: RangePartition

Represents a result of range partitioning.

__init__(name: str, upper: Literal[Any], lower: Literal[Any], properties: Dict[str, str] | None)

Methods

__init__(name, upper, lower, properties)

lower()

Returns the lower bound of the partition.

name()

Returns:

properties()

Returns:

upper()

Returns the upper bound of the partition.

lower() Literal[Any]

Returns the lower bound of the partition.

name() str
Returns:

str: The name of the partition.

properties() Dict[str, str]
Returns:

Dict[str, str]: The properties of the partition, such as statistics, location, etc.

upper() Literal[Any]

Returns the upper bound of the partition.