Class AlterPartitionOperation
- java.lang.Object
-
- org.apache.flink.table.operations.ddl.AlterTableOperation
-
- org.apache.flink.table.operations.ddl.AlterPartitionOperation
-
- All Implemented Interfaces:
AlterOperation
,ExecutableOperation
,Operation
- Direct Known Subclasses:
AlterPartitionPropertiesOperation
@Internal public abstract class AlterPartitionOperation extends AlterTableOperation
Abstract Operation to describe all ALTER TABLE statements that should be applied to partitions.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.table.operations.ExecutableOperation
ExecutableOperation.Context
-
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.flink.table.catalog.CatalogPartitionSpec
partitionSpec
-
Fields inherited from class org.apache.flink.table.operations.ddl.AlterTableOperation
ignoreIfTableNotExists, tableIdentifier
-
-
Constructor Summary
Constructors Constructor Description AlterPartitionOperation(org.apache.flink.table.catalog.ObjectIdentifier tableIdentifier, org.apache.flink.table.catalog.CatalogPartitionSpec partitionSpec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.table.catalog.CatalogPartitionSpec
getPartitionSpec()
-
Methods inherited from class org.apache.flink.table.operations.ddl.AlterTableOperation
getTableIdentifier, ignoreIfTableNotExists
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.operations.ExecutableOperation
execute
-
Methods inherited from interface org.apache.flink.table.operations.Operation
asSummaryString
-
-