I have simple table with 2 fields:
first: `id` INTEGER primary key auto-incremented
second: `symbols` VARCHAR unique key 3-length utf8_general_ci.
Lets say there is just one row already (comma separates fields):
1, c
now I want to add some more:
2, ç
but mysql says that this is duplicate entry because of "c" already exists... but "c" isn't "ç", field is in utf8_general_ci, same with utf32_general_ci.
How to fix this?