You may replicate from a master to a slave where the number of columns in the table on the slave is larger than the number of columns in the corresponding table on the master.
When replicating Table T1 from the master to table T2 on the slave, the following must be met:
You must be using row-based replication.
T1 and T2 must have the same database/table name.
T2 may contain additional columns compared to T1, but they must appear sequentially after the corresponding columns in T1.
All the matching columns in T1 and T2 must have the same type.
Every column in T2 but not in T1 must have a default value.
This functionality was added in MySQL 5.1.12.

User Comments
Add your own comment.