• unknown's avatar
    Fix: · fc8b1385
    unknown authored
    CREATE TABLE t1 (s1 CHAR(5) CHARACTER SET latin1 COLLATE latin1_german2_ci);
    INSERT INTO t1 VALUES ('Ü');
    INSERT INTO t1 VALUES ('ue');
    SELECT DISTINCT s1 FROM t1;
    
    The above returned two rows in error.
    Now it returns one row, in latin1_german2_ci:  Ü == ue
    
    
    fc8b1385
hp_hash.c 14.2 KB