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

Function bka_skip_index_tuple

sql/sql_join_cache.cc:4227–4238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4225*/
4226
4227static
4228bool bka_skip_index_tuple(range_seq_t rseq, range_id_t range_info)
4229{
4230 DBUG_ENTER("bka_skip_index_tuple");
4231 JOIN_CACHE_BKA *cache= (JOIN_CACHE_BKA *) rseq;
4232 THD *thd= cache->thd();
4233 bool res;
4234 status_var_increment(thd->status_var.ha_icp_attempts);
4235 if (!(res= cache->skip_index_tuple(range_info)))
4236 status_var_increment(thd->status_var.ha_icp_match);
4237 DBUG_RETURN(res);
4238}
4239
4240
4241/*

Callers

nothing calls this directly

Calls 2

thdMethod · 0.45
skip_index_tupleMethod · 0.45

Tested by

no test coverage detected