| 3353 | |
| 3354 | |
| 3355 | bool select_send::send_result_set_metadata(List<Item> &list, uint flags) |
| 3356 | { |
| 3357 | bool res; |
| 3358 | #ifdef WITH_WSREP |
| 3359 | if (WSREP(thd) && thd->wsrep_retry_query) |
| 3360 | { |
| 3361 | WSREP_DEBUG("skipping select metadata"); |
| 3362 | return FALSE; |
| 3363 | } |
| 3364 | #endif /* WITH_WSREP */ |
| 3365 | if (!(res= thd->protocol->send_result_set_metadata(&list, flags))) |
| 3366 | is_result_set_started= 1; |
| 3367 | return res; |
| 3368 | } |
| 3369 | |
| 3370 | void select_send::abort_result_set() |
| 3371 | { |
no outgoing calls
no test coverage detected