diff options
author | bar@bar.mysql.r18.ru <> | 2003-05-23 17:45:52 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-05-23 17:45:52 +0500 |
commit | 8192d169a2dea5ec8a5855440e5eb1c167c8ce7c (patch) | |
tree | 40660f305f13b43f69d092c4719cebfaaf120a40 /mysys/hash.c | |
parent | 2eccde258dd79f50e15640e508fd55cd2c094b34 (diff) | |
download | mariadb-git-8192d169a2dea5ec8a5855440e5eb1c167c8ce7c.tar.gz |
CHARSET_INFO structure reorganization for easier maintainance
Diffstat (limited to 'mysys/hash.c')
-rw-r--r-- | mysys/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/hash.c b/mysys/hash.c index 9169613c39f..0b2dbc484bc 100644 --- a/mysys/hash.c +++ b/mysys/hash.c @@ -36,7 +36,7 @@ static int hashcmp(HASH *hash,HASH_LINK *pos,const byte *key,uint length); static uint calc_hash(HASH *hash,const byte *key,uint length) { ulong nr1=1, nr2=4; - hash->charset->hash_sort(hash->charset,key,length,&nr1,&nr2); + hash->charset->coll->hash_sort(hash->charset,key,length,&nr1,&nr2); return nr1; } |