1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Added HA_ERR_DISK_FULL handler error

Original code by Zardosht Kasheff

sql/handler.cc:
  Added HA_ERR_DISK_FULL and ENOSPC (for handler that uses normal errno).
  This sets 'fatal_error' to ensure that the error is logged to err file (which hopefully is on another disk...)
This commit is contained in:
Michael Widenius
2011-05-18 13:36:12 +03:00
parent 0da2df248b
commit 5c70f813f3
3 changed files with 10 additions and 2 deletions

View File

@ -64,5 +64,6 @@ static const char *handler_error_messages[]=
"Read page with wrong checksum",
"Too many active concurrent transactions",
"Row is not visible by the current transaction",
"Operation was interrupted by end user (probably kill command?)"
"Operation was interrupted by end user (probably kill command?)",
"Disk full"
};