• unknown's avatar
    (SCRUM) · 69be8b9d
    unknown authored
    It looks like samll revolution in SELECT_LEX tree, but it was only natural way to solve problem with name resolution of external fields inside subselect which belongs to global order of union
    also it have following advantages:
     - removed mess with current_select type conversion
       - type checking/converting
       - a lot of virtual methods
     - fake select for union execution allocated only once (it was allocated for every subselect with union executing)
    
    changes:
    fixed bug with outer fields name resolution of subqueries which belong to global ORDER BY clause
    remuved select_lex() function, now thd->lex.current_select always have type SELECT_LEX
    new SELECT_LEX (fake_select_lex) will be allocated in case of UNION for using in UNION processing
    fake_select_lex allocated for union hold global ORDER BY & LIMIT clauses and have linkage equal to GLOBAL_OPTIONS_TYPE 
    new description of SELECT_LEX tree
    
    (SCRUM)
    
    
    sql/item.cc:
      global parameters moved to fake_select_lex
    sql/item_subselect.cc:
      global parameters moved to fake_select_lex
    sql/item_sum.cc:
      no need type checking & converion now
    sql/sql_delete.cc:
      no need type checking & converion now
    sql/sql_derived.cc:
      global parameters moved to fake_select_lex
    sql/sql_lex.cc:
      not used fields/mrthods moved from st_select_lex_node to st_select_lex
      global parameters moved to fake_select_lex
    sql/sql_lex.h:
      comments about new tree of select_lex s
      not used fields/mrthods moved from st_select_lex_node to st_select_lex
      global parameters moved to fake_select_lex
    sql/sql_parse.cc:
      global parameters moved to fake_select_lex
      allocation of fake_select_lex on demand
    sql/sql_select.cc:
      now fake_select_lex marked as GLOBAL_OPTIONS_TYPE
    sql/sql_union.cc:
      global parameters moved to fake_select_lex
    sql/sql_yacc.yy:
      global parameters moved to fake_select_lex
    69be8b9d
item.cc 41.7 KB