MCPcopy Create free account
hub / github.com/MariaDB/server / invalidate_query_block_list

Method invalidate_query_block_list

sql/sql_cache.cc:3354–3363  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3352*/
3353
3354void
3355Query_cache::invalidate_query_block_list(Query_cache_block_table *list_root)
3356{
3357 while (list_root->next != list_root)
3358 {
3359 Query_cache_block *query_block= list_root->next->block();
3360 BLOCK_LOCK_WR(query_block);
3361 free_query(query_block);
3362 }
3363}
3364
3365/*
3366 Register given table list beginning with given position in tables table of

Callers

nothing calls this directly

Calls 1

blockMethod · 0.45

Tested by

no test coverage detected