| 4225 | */ |
| 4226 | |
| 4227 | static |
| 4228 | bool 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 | /* |
nothing calls this directly
no test coverage detected