ตาราง replicate_log ไม่ถูกต้องครับให้ใช้คำสั่งนี้เพื่อสร้างใหม่นะครับ
คำสั่งแรก
Drop table replicate_log
คำสั่งที่สอง
CREATE TABLE `replicate_log` (
`event_id` int(11) NOT NULL auto_increment,
`event_time` datetime default NULL,
`client` varchar(20) default NULL,
`sql` text,
UNIQUE KEY `event_id_unique` (`event_id`)
)