Interface AlterTableEvent
-
- All Superinterfaces:
CatalogModificationEvent,TableModificationEvent
@PublicEvolving public interface AlterTableEvent extends TableModificationEvent
When a table is altered, aAlterTableEventevent will be created and fired.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static AlterTableEventcreateEvent(CatalogContext context, org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.table.catalog.CatalogBaseTable newTable, boolean ignoreIfNotExists)booleanignoreIfNotExists()org.apache.flink.table.catalog.CatalogBaseTablenewTable()-
Methods inherited from interface org.apache.flink.table.catalog.listener.CatalogModificationEvent
context
-
Methods inherited from interface org.apache.flink.table.catalog.listener.TableModificationEvent
identifier, isTemporary, table
-
-
-
-
Method Detail
-
newTable
org.apache.flink.table.catalog.CatalogBaseTable newTable()
-
ignoreIfNotExists
boolean ignoreIfNotExists()
-
createEvent
static AlterTableEvent createEvent(CatalogContext context, org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.table.catalog.CatalogBaseTable newTable, boolean ignoreIfNotExists)
-
-