mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
SQL: RIGHT JOIN in derived [fix #383]
This commit is contained in:
@ -2215,6 +2215,10 @@ inline Item * and_items(THD *thd, Item* cond, Item *item)
|
||||
{
|
||||
return (cond ? (new (thd->mem_root) Item_cond_and(thd, cond, item)) : item);
|
||||
}
|
||||
inline Item * or_items(THD *thd, Item* cond, Item *item)
|
||||
{
|
||||
return (cond ? (new (thd->mem_root) Item_cond_or(thd, cond, item)) : item);
|
||||
}
|
||||
bool choose_plan(JOIN *join, table_map join_tables);
|
||||
void optimize_wo_join_buffering(JOIN *join, uint first_tab, uint last_tab,
|
||||
table_map last_remaining_tables,
|
||||
|
Reference in New Issue
Block a user