| 3007 | |
| 3008 | |
| 3009 | int THD::send_explain_fields(select_result *result, |
| 3010 | uint8 explain_flags, |
| 3011 | bool is_analyze) |
| 3012 | { |
| 3013 | List<Item> field_list; |
| 3014 | int rc; |
| 3015 | rc= prepare_explain_fields(result, &field_list, explain_flags, is_analyze) || |
| 3016 | result->send_result_set_metadata(field_list, Protocol::SEND_NUM_ROWS | |
| 3017 | Protocol::SEND_EOF); |
| 3018 | return rc; |
| 3019 | } |
| 3020 | |
| 3021 | |
| 3022 | void THD::make_explain_json_field_list(List<Item> &field_list, bool is_analyze) |
no test coverage detected