I am using ClickHouse with MySQL Replication by the below command.
CREATE DATABASE ExampleDb ENGINE = MaterializeMySQL('mysql:3306', 'db', 'admin', 'password');
It works wells for inserting and updating data on the existing tables. However, if I delete or create a new table on ExampleDb, it will not synchronize. I need to drop the database and create a new one in ClickHouse.
Is there any way to solve the above problem?