Uses of Class
org.apache.flink.table.catalog.CatalogPartitionSpec
-
Packages that use CatalogPartitionSpec Package Description org.apache.flink.table.catalog org.apache.flink.table.catalog.exceptions -
-
Uses of CatalogPartitionSpec in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog that return types with arguments of type CatalogPartitionSpec Modifier and Type Method Description List<CatalogPartitionSpec>Catalog. listPartitions(ObjectPath tablePath)Get CatalogPartitionSpec of all partitions of the table.List<CatalogPartitionSpec>Catalog. listPartitions(ObjectPath tablePath, CatalogPartitionSpec partitionSpec)Get CatalogPartitionSpec of all partitions that is under the given CatalogPartitionSpec in the table.List<CatalogPartitionSpec>Catalog. listPartitionsByFilter(ObjectPath tablePath, List<Expression> filters)Get CatalogPartitionSpec of partitions by expression filters in the table.Methods in org.apache.flink.table.catalog with parameters of type CatalogPartitionSpec Modifier and Type Method Description voidCatalog. alterPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogPartition newPartition, boolean ignoreIfNotExists)Alter a partition.voidCatalog. alterPartitionColumnStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogColumnStatistics columnStatistics, boolean ignoreIfNotExists)Update the column statistics of a table partition.voidCatalog. alterPartitionStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogTableStatistics partitionStatistics, boolean ignoreIfNotExists)Update the statistics of a table partition.voidCatalog. createPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogPartition partition, boolean ignoreIfExists)Create a partition.voidCatalog. dropPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, boolean ignoreIfNotExists)Drop a partition.CatalogPartitionCatalog. getPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec)Get a partition of the given table.CatalogColumnStatisticsCatalog. getPartitionColumnStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec)Get the column statistics of a partition.CatalogTableStatisticsCatalog. getPartitionStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec)Get the statistics of a partition.List<CatalogPartitionSpec>Catalog. listPartitions(ObjectPath tablePath, CatalogPartitionSpec partitionSpec)Get CatalogPartitionSpec of all partitions that is under the given CatalogPartitionSpec in the table.booleanCatalog. partitionExists(ObjectPath tablePath, CatalogPartitionSpec partitionSpec)Check whether a partition exists or not.Method parameters in org.apache.flink.table.catalog with type arguments of type CatalogPartitionSpec Modifier and Type Method Description default List<CatalogColumnStatistics>Catalog. bulkGetPartitionColumnStatistics(ObjectPath tablePath, List<CatalogPartitionSpec> partitionSpecs)Get a list of column statistics for given partitions.default List<CatalogTableStatistics>Catalog. bulkGetPartitionStatistics(ObjectPath tablePath, List<CatalogPartitionSpec> partitionSpecs)Get a list of statistics of given partitions. -
Uses of CatalogPartitionSpec in org.apache.flink.table.catalog.exceptions
Constructors in org.apache.flink.table.catalog.exceptions with parameters of type CatalogPartitionSpec Constructor Description PartitionAlreadyExistsException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec)PartitionAlreadyExistsException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec, Throwable cause)PartitionNotExistException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec)PartitionNotExistException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec, Throwable cause)PartitionSpecInvalidException(String catalogName, List<String> partitionKeys, ObjectPath tablePath, CatalogPartitionSpec partitionSpec)PartitionSpecInvalidException(String catalogName, List<String> partitionKeys, ObjectPath tablePath, CatalogPartitionSpec partitionSpec, Throwable cause)
-