1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

WL#3337 (Events new infrasctructure)

Second cut of separating parsing phase from execution phase
Separate Event_timed from parsing phase and introducing Event_parse_data.
This commit is contained in:
andrey@lmy004.
2006-06-27 10:53:26 +02:00
parent e5936fce6c
commit 04659677a8
9 changed files with 151 additions and 36 deletions

View File

@ -259,19 +259,16 @@ public:
my_bool ends_null;
my_bool execute_at_null;
sp_name *identifier;
Item* item_expression;
Item* item_interval;
longlong expression;
interval_type interval;
// ulonglong created;
// ulonglong modified;
static Event_parse_data *
new_instance(THD *thd);
Event_parse_data() {}
~Event_parse_data() {}
Event_parse_data();
~Event_parse_data();
int
init_definer(THD *thd);