1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00
embedded library
hash_insert renamed to my_hash_insert to avoid name intersection
with another libraries
is there better idea?
This commit is contained in:
hf@deer.(none)
2003-09-19 14:44:31 +05:00
parent 0868446b3e
commit a2dbfaefa3
20 changed files with 32 additions and 32 deletions

View File

@@ -873,7 +873,7 @@ TABLE *open_table(THD *thd,const char *db,const char *table_name,
table->version=refresh_version;
table->flush_version=flush_version;
DBUG_PRINT("info", ("inserting table %p into the cache", table));
VOID(hash_insert(&open_cache,(byte*) table));
VOID(my_hash_insert(&open_cache,(byte*) table));
}
table->in_use=thd;