diff options
author | andrey@lmy004. <> | 2006-06-27 10:53:26 +0200 |
---|---|---|
committer | andrey@lmy004. <> | 2006-06-27 10:53:26 +0200 |
commit | 04659677a884eaae7c58cf71904853adee580943 (patch) | |
tree | f47071c0ce8385678f4b01febbd8945477f25d1b /sql/sql_lex.h | |
parent | e5936fce6c7e23bceab23272dbc1604ca0d4ff85 (diff) | |
download | mariadb-git-04659677a884eaae7c58cf71904853adee580943.tar.gz |
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.
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 15a94041d24..6e7456b61bc 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -28,6 +28,7 @@ class sp_pcontext; class st_alter_tablespace; class partition_info; class Event_timed; +class Event_parse_data; #ifdef MYSQL_SERVER /* @@ -1017,6 +1018,7 @@ typedef struct st_lex : public Query_tables_list st_sp_chistics sp_chistics; Event_timed *et; + Event_parse_data *event_parse_data; bool et_compile_phase; bool only_view; /* used for SHOW CREATE TABLE/VIEW */ |