1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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

that compares key images.


mysql-test/r/index_merge_innodb.result:
  Testcase for BUG#13484
mysql-test/r/rowid_order_innodb.result:
  Updated results for BUG#13484
mysql-test/t/index_merge_innodb.test:
  Testcase for BUG#13484
This commit is contained in:
unknown
2005-10-01 11:56:01 +04:00
parent 43c8f453e5
commit 5bdbad3d6c
4 changed files with 103 additions and 2 deletions

View File

@ -7030,7 +7030,7 @@ ha_innobase::cmp_ref(
(const char*)ref1, len1,
(const char*)ref2, len2);
} else {
result = field->cmp((const char*)ref1,
result = field->key_cmp((const char*)ref1,
(const char*)ref2);
}