Commit 556fdfbd authored by unknown's avatar unknown

Fix compile error on Windows: remove wrong typecast

parent efd99d95
......@@ -7042,8 +7042,7 @@ ha_innobase::cmp_ref(
(const char*)ref1, len1,
(const char*)ref2, len2);
} else {
result = field->key_cmp((const char*)ref1,
(const char*)ref2);
result = field->key_cmp(ref1, ref2);
}
if (result) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment