24#ifndef STATEMENT_RUNNABLE_H 
   25#define STATEMENT_RUNNABLE_H 
Execute a fragment of server code in an isolated context, so that it doesn't leave any effect on THD.
Definition: statement_runnable.h:42
 
virtual bool execute_server_code(THD *thd)=0
 
virtual ~Server_runnable()
 
Execute one SQL statement in an isolated context.
Definition: statement_runnable.h:55
 
LEX_STRING m_sql_text
Definition: statement_runnable.h:61
 
bool execute_server_code(THD *thd) override
Parse and execute a statement.
Definition: statement_runnable.cc:50
 
Statement_runnable(LEX_STRING sql_text)
Definition: statement_runnable.cc:37
 
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
 
Definition: mysql_lex_string.h:35