MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / link_hash

Function link_hash

mysys/mf_keycache.c:1446–1453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1444*/
1445
1446static inline void link_hash(HASH_LINK **start, HASH_LINK *hash_link)
1447{
1448 if (*start)
1449 (*start)->prev= &hash_link->next;
1450 hash_link->next= *start;
1451 hash_link->prev= start;
1452 *start= hash_link;
1453}
1454
1455
1456/*

Callers 2

unlink_hashFunction · 0.85
get_hash_linkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected