Uses of Interface
org.apache.flink.table.catalog.listener.CatalogModificationEvent
-
Packages that use CatalogModificationEvent Package Description org.apache.flink.table.catalog.listener -
-
Uses of CatalogModificationEvent in org.apache.flink.table.catalog.listener
Subinterfaces of CatalogModificationEvent in org.apache.flink.table.catalog.listener Modifier and Type Interface Description interfaceAlterDatabaseEventWhen a database is altered, anAlterDatabaseEventevent will be created and fired which has the old database and new database.interfaceAlterModelEventWhen a model is altered, aAlterModelEventevent will be created and fired.interfaceAlterTableEventWhen a table is altered, aAlterTableEventevent will be created and fired.interfaceCreateDatabaseEventWhen a database is created, aCreateDatabaseEventevent will be created and fired.interfaceCreateModelEventWhen a model is created, aCreateModelEventevent will be created and fired.interfaceCreateTableEventWhen a table is created, aCreateTableEventevent will be created and fired.interfaceDatabaseModificationEventBasic event for database modification such as create, alter and drop, it has the database name andCatalogDatabase.interfaceDropDatabaseEventWhen a database is dropped, aDropDatabaseEventevent will be created and fired.interfaceDropModelEventWhen a model is dropped, aDropModelEventevent will be created and fired.interfaceDropTableEventWhen a table is dropped, aDropTableEventevent will be created and fired.interfaceModelModificationEventBasic event for model modification such as create, alter and drop.interfaceTableModificationEventBase table event, provides column list, primary keys, partition keys, watermarks and properties in CatalogBaseTable.Methods in org.apache.flink.table.catalog.listener that return CatalogModificationEvent Modifier and Type Method Description static CatalogModificationEventAlterDatabaseEvent. createEvent(CatalogContext context, String databaseName, org.apache.flink.table.catalog.CatalogDatabase newDatabase, boolean ignoreIfNotExists)static CatalogModificationEventDropDatabaseEvent. createEvent(CatalogContext context, String databaseName, boolean ignoreIfNotExists, boolean cascade)Methods in org.apache.flink.table.catalog.listener with parameters of type CatalogModificationEvent Modifier and Type Method Description voidCatalogModificationListener. onEvent(CatalogModificationEvent event)Callback on catalog modification such as database and table ddl operations.
-