1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

MWL#182: Explain running statements

- Further progress with the code
- Testcases.
This commit is contained in:
Sergey Petrunya
2011-08-24 14:41:13 +04:00
parent 7e66213444
commit 84cb5de047
6 changed files with 107 additions and 13 deletions

View File

@@ -2932,7 +2932,14 @@ void THD::restore_active_arena(Query_arena *set, Query_arena *backup)
DBUG_VOID_RETURN;
}
// psergey
/*
Produce EXPLAIN data.
This function is APC-scheduled to be run in the context of the thread that
we're producing EXPLAIN for.
*/
void Show_explain_request::get_explain_data(void *arg)
{
Show_explain_request *req= (Show_explain_request*)arg;