1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

WL#3337 (Events new architecture)

Small updates before patch submit.
This commit is contained in:
andrey@lmy004.
2006-07-17 16:52:45 +02:00
parent 3f6de6c523
commit 0404763d81
16 changed files with 162 additions and 103 deletions

View File

@ -74,9 +74,9 @@ public:
enum enum_status status;
TIME last_executed;
TIME execute_at;
TIME starts;
TIME ends;
TIME execute_at;
my_bool starts_null;
my_bool ends_null;
my_bool execute_at_null;
@ -84,10 +84,10 @@ public:
longlong expression;
interval_type interval;
uint flags;//all kind of purposes
bool dropped;
uint execution_count;
Event_queue_element();
virtual ~Event_queue_element();
@ -170,6 +170,8 @@ public:
ulong sql_mode;
uint execution_count;
Event_job_data();
virtual ~Event_job_data();