Details
-
Bug
-
Status: Confirmed (View Workflow)
-
Minor
-
Resolution: Unresolved
-
5.5(EOL), 10.1(EOL), 10.2(EOL), 10.3(EOL), 10.4(EOL)
-
None
-
Debian 10
Description
The following code outputs both rows. I think it should only output the one starting with 'å'. (Tested on 10.3.18)
CREATE TABLE test ( |
name VARCHAR(100) |
) CHARACTER SET latin1 COLLATE latin1_swedish_ci; |
|
INSERT INTO test(name) VALUES('[hello world]'); |
INSERT INTO test(name) VALUES('ålesund'); |
|
SELECT * FROM test WHERE name LIKE 'å%'; |
Attachments
Issue Links
- relates to
-
MDEV-21436 Character comparison incorect
- Confirmed
- links to