• Igor Babaev's avatar
    MDEV-24675 Server crash when table value constructor uses a subselect · bdae8bb6
    Igor Babaev authored
    This patch actually fixes the bug MDEV-24675 and the bug MDEV-24618:
    Assertion failure when TVC uses a row in the context expecting scalar value
    
    The cause of these bugs is the same wrong call of the function that fixes
    value expressions in the value list of a table value constructor.
    The assertion failure happened when an expression in the value list is of
    the row type. In this case an error message was expected, but it was not
    issued because the function fix_fields_if_needed() was called for to
    check fields of value expressions in a TVC instead of the function
    fix_fields_if_needed_for_scalar() that would also check that the value
    expressions are are of a scalar type.
    The first bug happened when a table value expression used an expression
    returned by single-row subselect. In this case the call of the
    fix_fields_if_needed_for_scalar virtual function must be provided with
    and address to which the single-row subselect has to be attached.
    
    Test cases were added for each of the bugs.
    
    Approved by Oleksandr Byelkin <sanja@mariadb.com>
    bdae8bb6
table_value_constr.result 70.4 KB