Is this a bug or a feature:
I first create this simple table.
CREATE TABLE Test
( ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
Name VARCHAR(10) NOT NULL,
PRIMARY KEY (ID),
UNIQUE INDEX (Name)
);
Then I try to add the following two records:
INSERT INTO Test (Name) VALUES ("Muller");
INSERT INTO Test (Name) VALUES ("Müller");
"Muller" and "Müller" are not the same,
still I get the error
"Duplicate entry 'Müller' for key 2".
I'm using MySQL Server 4.0.18-nt (Windows 2000).
Should I send a bug report?
Thanks,
Anne
I first create this simple table.
CREATE TABLE Test
( ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
Name VARCHAR(10) NOT NULL,
PRIMARY KEY (ID),
UNIQUE INDEX (Name)
);
Then I try to add the following two records:
INSERT INTO Test (Name) VALUES ("Muller");
INSERT INTO Test (Name) VALUES ("Müller");
"Muller" and "Müller" are not the same,
still I get the error
"Duplicate entry 'Müller' for key 2".
I'm using MySQL Server 4.0.18-nt (Windows 2000).
Should I send a bug report?
Thanks,
Anne