mirror of
https://github.com/MariaDB/server.git
synced 2026-05-02 05:05:33 +02:00
Merge from 5.1 to 5.5
sql/sql_class.h: Parsing for group_concat's order by is made independent. As a result, add_order_to_list cannot be used anymore.
This commit is contained in:
commit
51555d2ae3
6 changed files with 42 additions and 17 deletions
|
|
@ -3673,6 +3673,11 @@ inline bool add_order_to_list(THD *thd, Item *item, bool asc)
|
|||
return thd->lex->current_select->add_order_to_list(thd, item, asc);
|
||||
}
|
||||
|
||||
inline bool add_gorder_to_list(THD *thd, Item *item, bool asc)
|
||||
{
|
||||
return thd->lex->current_select->add_gorder_to_list(thd, item, asc);
|
||||
}
|
||||
|
||||
inline bool add_group_to_list(THD *thd, Item *item, bool asc)
|
||||
{
|
||||
return thd->lex->current_select->add_group_to_list(thd, item, asc);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue