Interface RangePartition

All Superinterfaces:
Partition
All Known Implementing Classes:
RangePartitionDTO

@Evolving public interface RangePartition extends Partition
A range partition represents a result of range partitioning. For example, for range partition
`PARTITION p20200321 VALUES LESS THAN ("2020-03-22")`
its upper bound is "2020-03-22" and its lower bound is null.
  • Method Summary

    Modifier and Type
    Method
    Description
     
     

    Methods inherited from interface org.apache.gravitino.rel.partitions.Partition

    name, properties
  • Method Details

    • upper

      Literal<?> upper()
      Returns:
      The upper bound of the partition.
    • lower

      Literal<?> lower()
      Returns:
      The lower bound of the partition.