First time working with replication so apologies if I don't understand exactly how it works.
Have two servers as masters to each other. Slave status on both show Slave_IO_Running and Slave_SQL_Running as YES. Seconds_Behind_Master show as 0.
I insert a row:
insert into user (columns) values (values); //(i've already done the USE command)
But now on the other server, this row is not appearing in the user table. I do however see the slave's relay log file updating with the insert statement, similarly I see the master log position updating.
Not sure why I'm not seeing this new row in the slave's user table.