diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-10-16 21:17:57 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-10-16 21:17:57 +0300 |
commit | 61122db5251346e5cf9f8575a70ef97017541553 (patch) | |
tree | 591f269a779c937e9badc95cb89c7c80c0c64bf5 /sql/sql_lex.h | |
parent | df16b3182a210e5e65763f5dc4ea6a34d5457b78 (diff) | |
download | mariadb-git-61122db5251346e5cf9f8575a70ef97017541553.tar.gz |
Some small accelerations ...
I intend to do some more accelerations in mysql_execute_command and
in SQLCOM_SELECT part for which I need to fix EXPLAIN with derived
tables plus few additional items. If this proves to be much I wil
just make it a new SCRUM task
sql/sql_lex.h:
Some small accelerations ...
sql/sql_parse.cc:
Some small accelerations ...
sql/sql_yacc.yy:
Some small accelerations ...
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 28d6d93e194..de57e9f77a8 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -378,7 +378,7 @@ typedef struct st_lex uint param_count; bool drop_primary, drop_if_exists, local_file, olap; bool in_comment, ignore_space, verbose, simple_alter; - bool derived_tables; + bool derived_tables, describe; uint slave_thd_opt; CHARSET_INFO *charset; } LEX; |