mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +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)
|
||||
fprintf(stderr, "-- It's a view, skipped\n");
|
||||
was_views= 1;
|
||||
DBUG_RETURN(0)
|
||||
DBUG_RETURN(0);
|
||||
}
|
||||
row= mysql_fetch_row(tableRes);
|
||||
fprintf(sql_file, "%s;\n", row[1]);
|
||||
@ -2218,7 +2218,7 @@ static my_bool getViewStructure(char *table, char* db)
|
||||
{
|
||||
if (verbose)
|
||||
fprintf(stderr, "-- It's base table, skipped\n");
|
||||
DBUG_RETURN(0)
|
||||
DBUG_RETURN(0);
|
||||
}
|
||||
|
||||
if (!opt_xml && opt_comments)
|
||||
|
Reference in New Issue
Block a user