Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
5.5(EOL), 10.0(EOL)
-
None
Description
The test case shows that SELECT returns a row that doesn't match the WHERE condition. This only happens when the column is not indexed, if there's an index the result is correct (no rows found).
DROP DATABASE IF EXISTS `strict_unicode_test`; |
SET NAMES 'utf8' COLLATE 'utf8_unicode_ci'; |
SET SESSION sql_mode='STRICT_ALL_TABLES'; |
CREATE DATABASE `strict_unicode_test` COLLATE utf8_unicode_ci; |
USE `strict_unicode_test`; |
SHOW VARIABLES LIKE 'coll%'; |
SHOW VARIABLES LIKE 'character%'; |
DROP TABLE IF EXISTS `users`; |
CREATE TABLE `users` ( |
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, |
`login` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', |
PRIMARY KEY (`ID`) |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
INSERT INTO users (login) VALUES ('admin'); |
SELECT * FROM `users` WHERE `login` = 'admin��'; |
SHOW WARNINGS;
|
I think the following failure is related to the described problem (please extract it into a separate issue if it turns out to be different):
Failing test case
Results
MariaDB [test]>
| f1 |
| foo |
| bar |
MariaDB [test]>
| f1 |
| foo |
| bar |
I think it's related, because if t2 is also UTF8, there is no problem:
Success story
Results
MariaDB [test]>
MariaDB [test]>