Uploaded image for project: 'Debezium'
  1. Debezium
  2. DBZ-2924

Support por ALTER and DROP DDL operation in Oracle Debezium Connector

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: Major Major
    • None
    • 1.4.0.Final
    • oracle-connector
    • 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.

       

            Unassigned Unassigned
            ronaldolanhellas Ronaldo Lanhellas (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: