MCPcopy Create free account
hub / github.com/MariaDB/server / parsed_multi_operand_query_expression_body

Method parsed_multi_operand_query_expression_body

sql/sql_lex.cc:11788–11800  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11786*/
11787
11788bool 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/**

Callers

nothing calls this directly

Calls 2

next_selectMethod · 0.80
fix_distinctMethod · 0.80

Tested by

no test coverage detected