diff options
author | bell@sanja.is.com.ua <> | 2004-02-17 01:14:51 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-02-17 01:14:51 +0200 |
commit | 3f86f10a57f0401d81cd66209383cd10f6ef7cf7 (patch) | |
tree | a619c58eaa61934c229e4af77c6ea8c60678beb5 /sql/sql_olap.cc | |
parent | 80b01886631a813273da930583bb089c48e201bb (diff) | |
download | mariadb-git-3f86f10a57f0401d81cd66209383cd10f6ef7cf7.tar.gz |
ulternative bugfix for BUG#2508 and fix for BUG#2809 - every table has its own TABLE structure
Diffstat (limited to 'sql/sql_olap.cc')
-rw-r--r-- | sql/sql_olap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_olap.cc b/sql/sql_olap.cc index efc4cf0921d..026ddbae7c7 100644 --- a/sql/sql_olap.cc +++ b/sql/sql_olap.cc @@ -152,7 +152,7 @@ int handle_olaps(LEX *lex, SELECT_LEX *select_lex) List<Item> all_fields(select_lex->item_list); - if (setup_tables((TABLE_LIST *)select_lex->table_list.first, 0) || + if (setup_tables((TABLE_LIST *)select_lex->table_list.first) || setup_fields(lex->thd, 0, (TABLE_LIST *)select_lex->table_list.first, select_lex->item_list, 1, &all_fields,1) || setup_fields(lex->thd, 0, (TABLE_LIST *)select_lex->table_list.first, |