Comment 8 for bug 1280896

Revision history for this message
jfr (j-francoz) wrote :

Hello

Are you sure that it will not violate the constraint if we skip duplicate keys checking ?

Exemple :
create table uniq (u varchar(10), v varchar(10), unique key `unique_key`(`u`));

echo "insert into uniq (u,v) values ('const','value1');" | mysql -h maria01 &
echo "insert into uniq (u,v) values ('const','value2');" | mysql -h maria02 &

select * from uniq where u='const';