1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

BUG#13484: In ha_innobase::cmp_ref call Field::key_cmp() as this is the function

that compares key images.
This commit is contained in:
sergefp@mysql.com
2005-10-01 11:56:01 +04:00
parent d3c0fd2bce
commit 90414dcaaf
4 changed files with 103 additions and 2 deletions

View File

@@ -178,9 +178,9 @@ insert into t1 values ('','empt',2,2),
('dddd','d--d',2,2);
select * from t1 force index(key1, key2) where key1 < 3 or key2 < 3;
pk1 pk2 key1 key2
empt 2 2
a a--a 2 2
bb b--b 2 2
ccc c--c 2 2
dddd d--d 2 2
empt 2 2
drop table t1;