• Davi Arnaut's avatar
    Bug#40277: SHOW CREATE VIEW returns invalid SQL · 301b0786
    Davi Arnaut authored
    The problem is that not all column names retrieved from a SELECT
    statement can be used as view column names due to length and format
    restrictions. The server failed to properly check the conformity
    of those automatically generated column names before storing the
    final view definition on disk.
    
    Since columns retrieved from a SELECT statement can be anything
    ranging from functions to constants values of any format and length,
    the solution is to rewrite to a pre-defined format any names that
    are not acceptable as a view column name.
    
    The name is rewritten to "Name_exp_%u" where %u translates to the
    position of the column. To avoid this conversion scheme, define
    explict names for the view columns via the column_list clause.
    Also, aliases are now only generated for top level statements.
    301b0786
group_by.result 54.7 KB