mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fix UNION
New faster list iterators Change list code to be simpler and faster Optimize count(distinct) New error messages for UNION Make create_tmp_table more general to be usable by UNION
This commit is contained in:
@ -127,7 +127,7 @@ proc_analyse_init(THD *thd, ORDER *param, select_result *result,
|
||||
pc->f_end = pc->f_info + field_list.elements;
|
||||
pc->fields = field_list;
|
||||
|
||||
List_iterator<Item> it(pc->fields);
|
||||
List_iterator_fast<Item> it(pc->fields);
|
||||
f_info = pc->f_info;
|
||||
|
||||
Item *item;
|
||||
|
Reference in New Issue
Block a user