• bar@mysql.com/bar.intranet.mysql.r18.ru's avatar
    mysqld --collation-server=xxx --character-set-server=yyy · 4a63a64f
    didn't work as expected: collation_server was set not to xxx,
    but to the default collation of character set "yyy".
        
    With different argument order it worked as expected:
    mysqld --character-set-server=yyy --collation-server=yyy 
        
    Fix:
    initializate default_collation_name to 0
    when processing --character-set-server
    only if --collation-server has not been specified
    in command line.
    4a63a64f
mysqld.cc 245 KB