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

Bug#21215 mysqldump creating incomplete backups without warning

- Add call to 'safe_exit' function when db query fails.
This commit is contained in:
msvensson@neptunus.(none)
2006-07-24 13:10:24 +02:00
parent 9f78d779e3
commit c84cdbf40b
3 changed files with 57 additions and 0 deletions

View File

@ -872,6 +872,7 @@ static int mysql_query_with_error_report(MYSQL *mysql_con, MYSQL_RES **res,
{
my_printf_error(0, "Couldn't execute '%s': %s (%d)", MYF(0),
query, mysql_error(mysql_con), mysql_errno(mysql_con));
safe_exit(EX_MYSQLERR);
return 1;
}
return 0;