diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-01-22 20:23:45 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-01-22 20:23:45 +0100 |
commit | df9f68e9730d5d1f00ad82536c27352b9915c018 (patch) | |
tree | 7444a2ca946246309eb1a76b086f452f510a8a50 /sql/log.cc | |
parent | cb5b0d4ffa964b2808dfb42b64f53b4b9e2d9bc1 (diff) | |
download | mariadb-git-df9f68e9730d5d1f00ad82536c27352b9915c018.tar.gz |
Replace another abort() under DBUG_EXECUTE_IF with DBUG_ABORT to avoid popups on Windows.
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log.cc b/sql/log.cc index 385b067d663..fdc763df0de 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -3532,7 +3532,7 @@ int MYSQL_BIN_LOG::purge_logs(const char *to_log, break; } - DBUG_EXECUTE_IF("crash_purge_before_update_index", abort();); + DBUG_EXECUTE_IF("crash_purge_before_update_index", DBUG_ABORT();); if ((error= sync_purge_index_file())) { |