summaryrefslogtreecommitdiff
path: root/include/hash.h
diff options
context:
space:
mode:
authorhf@deer.(none) <>2003-09-19 14:44:31 +0500
committerhf@deer.(none) <>2003-09-19 14:44:31 +0500
commita2dbfaefa366792fd1ed7e0a331212997fe43ceb (patch)
tree3c07a62a6ce161b611b85e52602cd8585ba0ad6d /include/hash.h
parent0868446b3e457e1ce32f63cadff4ef4c8b17344a (diff)
downloadmariadb-git-a2dbfaefa366792fd1ed7e0a331212997fe43ceb.tar.gz
SCRUM
embedded library hash_insert renamed to my_hash_insert to avoid name intersection with another libraries is there better idea?
Diffstat (limited to 'include/hash.h')
-rw-r--r--include/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hash.h b/include/hash.h
index 6c805bc2da7..3c2ae32c70e 100644
--- a/include/hash.h
+++ b/include/hash.h
@@ -49,7 +49,7 @@ void hash_free(HASH *tree);
byte *hash_element(HASH *hash,uint idx);
gptr hash_search(HASH *info,const byte *key,uint length);
gptr hash_next(HASH *info,const byte *key,uint length);
-my_bool hash_insert(HASH *info,const byte *data);
+my_bool my_hash_insert(HASH *info,const byte *data);
my_bool hash_delete(HASH *hash,byte *record);
my_bool hash_update(HASH *hash,byte *record,byte *old_key,uint old_key_length);
void hash_replace(HASH *hash, uint idx, byte *new_row);