summaryrefslogtreecommitdiff
path: root/innobase/dict
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2005-01-21 22:03:08 +0200
committerunknown <heikki@hundin.mysql.fi>2005-01-21 22:03:08 +0200
commitb5269973ab0f25866970caa369f7ae483a3590a7 (patch)
treece00970ef68314681344fade0825d7aaba50f351 /innobase/dict
parent140a86c674de7b31625a7851d3c68b235bf1a997 (diff)
downloadmariadb-git-b5269973ab0f25866970caa369f7ae483a3590a7.tar.gz
dict0load.c:
Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge os0thread.c: test innobase/os/os0thread.c: test innobase/dict/dict0load.c: Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge
Diffstat (limited to 'innobase/dict')
-rw-r--r--innobase/dict/dict0load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/dict/dict0load.c b/innobase/dict/dict0load.c
index 63f25cdddfe..17b53a7a140 100644
--- a/innobase/dict/dict0load.c
+++ b/innobase/dict/dict0load.c
@@ -779,7 +779,7 @@ dict_load_table(
/* Track a corruption bug reported on the MySQL mailing list Jan 14,
2005: mix_len had a value different from 0 */
- field = rec_get_nth_field(rec, 7, &len);
+ field = rec_get_nth_field_old(rec, 7, &len);
ut_a(len == 4);
mix_len = mach_read_from_4(field);