1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Further upmerge the yaSSL upgrade (to 2.2.0) from MySQL 5.1 to 5.5.

Also, take a syntax fix (C++ style comment in C file) in client/mysqldump.c.
This commit is contained in:
Joerg Bruehe
2012-03-02 13:23:52 +01:00
8 changed files with 69 additions and 19 deletions

View File

@ -2315,10 +2315,10 @@ static uint dump_routines_for_db(char *db)
{
if (opt_xml)
{
if (i) // Procedures.
if (i) /* Procedures. */
print_xml_row(sql_file, "routine", routine_res, &row,
"Create Procedure");
else // Functions.
else /* Functions. */
print_xml_row(sql_file, "routine", routine_res, &row,
"Create Function");
continue;