mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
mysqldump.c:
Add missing semicolons.
This commit is contained in:
@ -1011,7 +1011,7 @@ static uint getTableStructure(char *table, char* db)
|
|||||||
if (verbose)
|
if (verbose)
|
||||||
fprintf(stderr, "-- It's a view, skipped\n");
|
fprintf(stderr, "-- It's a view, skipped\n");
|
||||||
was_views= 1;
|
was_views= 1;
|
||||||
DBUG_RETURN(0)
|
DBUG_RETURN(0);
|
||||||
}
|
}
|
||||||
row= mysql_fetch_row(tableRes);
|
row= mysql_fetch_row(tableRes);
|
||||||
fprintf(sql_file, "%s;\n", row[1]);
|
fprintf(sql_file, "%s;\n", row[1]);
|
||||||
@ -2218,7 +2218,7 @@ static my_bool getViewStructure(char *table, char* db)
|
|||||||
{
|
{
|
||||||
if (verbose)
|
if (verbose)
|
||||||
fprintf(stderr, "-- It's base table, skipped\n");
|
fprintf(stderr, "-- It's base table, skipped\n");
|
||||||
DBUG_RETURN(0)
|
DBUG_RETURN(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!opt_xml && opt_comments)
|
if (!opt_xml && opt_comments)
|
||||||
|
Reference in New Issue
Block a user