[MDEV-33085] Tables T1 and t1 do not work well with ENGINE=CSV and lower-case-table-names=0 Created: 2023-12-20  Updated: 2024-01-19

Status: Open
Project: MariaDB Server
Component/s: Character Sets
Affects Version/s: 10.4, 11.4
Fix Version/s: 10.4, 11.4

Type: Bug Priority: Major
Reporter: Alexander Barkov Assignee: Alexander Barkov
Resolution: Unresolved Votes: 0
Labels: None

Issue Links:
Relates
relates to MDEV-31340 Remove MY_COLLATION_HANDLER::strcasec... In Review

 Description   

CREATE OR REPLACE TABLE t1 (a INT NOT NULL) ENGINE=CSV;
CREATE OR REPLACE TABLE T1 (a INT NOT NULL) ENGINE=CSV;
INSERT INTO t1 VALUES (10);
INSERT INTO T1 VALUES (20);
SELECT * FROM t1;

+----+
| a  |
+----+
| 10 |
| 20 |
+----+

Looks wrong. Expected to get the value 10 only.


Generated at Thu Feb 08 10:36:16 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.