diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-10-02 13:06:30 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-10-05 17:14:15 +0200 |
commit | 8dff1aa5dc3335587b64ebf52ef2f8d5af2a0488 (patch) | |
tree | bfe94a3f7be993200b86eca796103476e6a1c946 /sql/sql_select.h | |
parent | c93ac0a1c68ed73cc4a59a475a8d576122557001 (diff) | |
download | mariadb-git-8dff1aa5dc3335587b64ebf52ef2f8d5af2a0488.tar.gz |
bug: move one_storage_engine checking loop
down to the point where all tables are already known
(and subqueries converted to joins, if needed)
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index 1e853d73a32..9f9047399fe 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -1087,8 +1087,6 @@ public: /* Finally picked QEP. This is result of join optimization */ POSITION *best_positions; - /* points to a storage engine if all tables comes from the storage engine */ - handlerton *one_storage_engine; Pushdown_query *pushdown_query; JOIN_TAB *original_join_tab; uint original_table_count; @@ -1391,7 +1389,6 @@ public: group_optimized_away= 0; no_rows_in_result_called= 0; positions= best_positions= 0; - one_storage_engine= 0; pushdown_query= 0; original_join_tab= 0; do_select_call_count= 0; |