| 11786 | */ |
| 11787 | |
| 11788 | bool LEX::parsed_multi_operand_query_expression_body(SELECT_LEX_UNIT *unit) |
| 11789 | { |
| 11790 | SELECT_LEX *first_in_nest= |
| 11791 | unit->pre_last_parse->next_select()->first_nested; |
| 11792 | if (first_in_nest->first_nested != first_in_nest) |
| 11793 | { |
| 11794 | /* There is a priority jump starting from first_in_nest */ |
| 11795 | if (create_priority_nest(first_in_nest, first_in_nest->first_nested) == NULL) |
| 11796 | return true; |
| 11797 | unit->fix_distinct(); |
| 11798 | } |
| 11799 | return false; |
| 11800 | } |
| 11801 | |
| 11802 | |
| 11803 | /** |
nothing calls this directly
no test coverage detected