-
Bug
-
Resolution: Duplicate
-
Major
-
None
-
1.4.0.Final
-
None
-
False
-
False
-
Undefined
-
I noted that today in class BaseOracleSchemaChangeEventEmitter don't have implemented the operation ALTER and DROP :
switch (commandType) { case "CREATE TABLE": return SchemaChangeEventType.CREATE; case "ALTER TABLE": LOGGER.warn("ALTER TABLE not yet implemented"); break; case "DROP TABLE": LOGGER.warn("DROP TABLE not yet implemented"); break; default: LOGGER.debug("Ignoring DDL event of type {}", commandType); }
Is there any reason for this feature ALTER/DROP not be implemented yet? I would like to help with it if needed. I really need to capture ALTER table operation, not only CREATE.
- duplicates
-
DBZ-2916 Support DDL operations
- Closed