Package org.apache.flink.table.catalog
Interface CatalogPartition
-
@PublicEvolving public interface CatalogPartitionRepresents a partition object in catalog.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CatalogPartitioncopy()Get a deep copy of the CatalogPartition instance.StringgetComment()Get comment of the partition.Optional<String>getDescription()Get a brief description of the database.Optional<String>getDetailedDescription()Get a detailed description of the database.Map<String,String>getProperties()Get a map of properties associated with the partition.
-
-
-
Method Detail
-
getProperties
Map<String,String> getProperties()
Get a map of properties associated with the partition.- Returns:
- a map of properties with the partition
-
getComment
String getComment()
Get comment of the partition.- Returns:
- comment of the partition
-
copy
CatalogPartition copy()
Get a deep copy of the CatalogPartition instance.- Returns:
- a copy of CatalogPartition instance
-
getDescription
Optional<String> getDescription()
Get a brief description of the database.- Returns:
- an optional short description of the database
-
-