mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
This is the 3-rd part of patch for BUG#11986:
remove redundant "body" from Event_parse_data (use sp_head::m_body).
This commit is contained in:
@ -77,7 +77,7 @@ public:
|
||||
Event_basic();
|
||||
virtual ~Event_basic();
|
||||
|
||||
virtual int
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table) = 0;
|
||||
|
||||
protected:
|
||||
@ -119,7 +119,7 @@ public:
|
||||
Event_queue_element();
|
||||
virtual ~Event_queue_element();
|
||||
|
||||
virtual int
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table);
|
||||
|
||||
bool
|
||||
@ -157,7 +157,7 @@ public:
|
||||
void
|
||||
init();
|
||||
|
||||
virtual int
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table);
|
||||
|
||||
int
|
||||
@ -176,7 +176,7 @@ public:
|
||||
|
||||
Event_job_data();
|
||||
|
||||
virtual int
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table);
|
||||
|
||||
bool
|
||||
@ -205,12 +205,11 @@ public:
|
||||
*/
|
||||
bool do_not_create;
|
||||
|
||||
const char *body_begin;
|
||||
bool body_changed;
|
||||
|
||||
LEX_STRING dbname;
|
||||
LEX_STRING name;
|
||||
LEX_STRING definer;// combination of user and host
|
||||
LEX_STRING body;
|
||||
LEX_STRING comment;
|
||||
|
||||
Item* item_starts;
|
||||
@ -235,9 +234,6 @@ public:
|
||||
bool
|
||||
check_parse_data(THD *thd);
|
||||
|
||||
void
|
||||
init_body(THD *thd);
|
||||
|
||||
private:
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user