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

Function explain_append_mrr_info

sql/sql_select.cc:31012–31025  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31010*/
31011
31012void explain_append_mrr_info(QUICK_RANGE_SELECT *quick, String *res)
31013{
31014 char mrr_str_buf[128];
31015 mrr_str_buf[0]=0;
31016 int len;
31017 handler *h= quick->head->file;
31018 len= h->multi_range_read_explain_info(quick->mrr_flags, mrr_str_buf,
31019 sizeof(mrr_str_buf));
31020 if (len > 0)
31021 {
31022 //res->append(STRING_WITH_LEN("; "));
31023 res->append(mrr_str_buf, len);
31024 }
31025}
31026
31027
31028///////////////////////////////////////////////////////////////////////////////

Callers 2

save_explain_dataMethod · 0.85

Calls 2

appendMethod · 0.45

Tested by

no test coverage detected