• Igor Babaev's avatar
    MDEV-17222 Reproducible server crash in String_list::append_str or · 103b1df5
    Igor Babaev authored
               in Field_iterator_table::create_item
    
    When IN predicate is converted to IN subquery we have to ensure that
    any item from the select list of the subquery has some name and this name
    is unique across the select list.
    This was not guaranteed by the code before the patch for MDEV-17222.
    If the name of an item of the select list was not set, and this happened
    for binary constants, then the server crashed. If the first row in the IN
    list contained the same constant in two different positions then the server
    returned an error message.
    This was fixed by providing all constants in the first row of the IN list
    with generated names.
    103b1df5
sql_tvc.cc 23.3 KB