5 messages in com.mysql.lists.bugsFwd: LOAD table from master failure
FromSent OnAttachments
Vinche31 May 2001 02:40 
Sasha Pachev31 May 2001 11:51 
Sasha Pachev31 May 2001 14:28 
Michael Widenius01 Jun 2001 03:27 
Michael Widenius01 Jun 2001 13:36 
Subject:Fwd: LOAD table from master failure
From:Vinche (Vin@lavtech.ru)
Date:05/31/2001 02:40:47 AM
List:com.mysql.lists.bugs

This is a forwarded message From: Vinche <Vin@lavtech.ru> To: mys@lists.mysql.com Date: Tuesday, May 29, 2001, 2:13:58 PM Subject: LOAD table from master failure

===8<==============Original message text=============== Hello mysql,

I just tried to build replica on the fly and encountered strange problem. When I do "LOAD table stopword from master" it hangs forever and in logs I'm getting this

010529 14:04:13 Duplicate key 1 for record at 315 against new record at 0 010529 14:04:13 fetch_nx_table: failed on create table

I don't think 315 is a row number because

mysql> select count(*) from stopword; +----------+ | count(*) | +----------+ | 99 | +----------+ 1 row in set (0.00 sec)

On the replica server I have

mysql> select count(*) from stopword; +----------+ | count(*) | +----------+ | 0 | +----------+ 1 row in set (0.00 sec)

Neither CHECK nor REPAIR table stopword on master give me an error. I don't know what to now. Maybe someone help me?

Table definition:

CREATE TABLE stopword ( word char(32) NOT NULL default '', lang char(2) NOT NULL default '', PRIMARY KEY (word,lang) ) TYPE=MyISAM;