1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Revert Bar's fix as this causes changes in the key tree that could cause incompatibilites

Fix instead wrong call to ha_key_cmp
This is related to bug #10741 Inserting double value into utf8 column crashes server
This commit is contained in:
monty@mysql.com
2005-06-07 15:09:49 +03:00
parent a411763dae
commit 1c725ff797
4 changed files with 9 additions and 5 deletions

View File

@ -744,4 +744,5 @@ create table t1 (
insert into t1 values (1,'Durban North');
insert into t1 values (2,'Durban');
select * from t1 where city = 'Durban';
select * from t1 where city = 'Durban ';
drop table t1;