I have recently realized that updates made in the manner below (without a prior declaration 'use database') on my MySQL master have not updated on my slaves.
UPDATE database.table SET name='Tesla' WHERE ID=420;
Is there any command that I can execute on my master or slaves to make them execute all of these past update queries or will I have to re-setup replication on each slave?