Details
Description
CREATE OR REPLACE TABLE t1 (c CHAR(100) COLLATE utf8mb3_unicode_nopad_ci); |
INSERT INTO t1 VALUES ('ss'),('ß'); |
SET big_tables=0; |
SELECT DISTINCT c FROM t1; |
+------+
|
| c |
|
+------+
|
| ss |
|
| ß |
|
+------+
|
SET big_tables=1; |
SELECT DISTINCT c FROM t1; |
+------+
|
| c |
|
+------+
|
| ss |
|
+------+
|
Attachments
Issue Links
- relates to
-
MDEV-25904 New collation functions to compare InnoDB style trimmed NO PAD strings
- Closed
-
MDEV-27670 Assertion `(cs->state & 0x20000) == 0' failed in my_strnncollsp_nchars_generic_8bit
- Closed
-
MDEV-27768 MDEV-25440: Assertion `(cs->state & 0x20000) == 0' failed in my_strnncollsp_nchars_generic_8bit
- Closed
-
MDEV-30048 Prefix keys for CHAR work differently for MyISAM vs InnoDB
- Closed
-
MDEV-30072 Wrong ORDER BY for a partitioned prefix key + NOPAD
- Closed
-
MDEV-30034 UNIQUE USING HASH accepts duplicate entries for tricky collations
- Closed