mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Added error message for index file full
This commit is contained in:
@@ -3679,13 +3679,19 @@ void handler::print_error(int error, myf errflag)
|
||||
textno=ER_UNSUPPORTED_EXTENSION;
|
||||
break;
|
||||
case HA_ERR_RECORD_FILE_FULL:
|
||||
case HA_ERR_INDEX_FILE_FULL:
|
||||
{
|
||||
textno=ER_RECORD_FILE_FULL;
|
||||
/* Write the error message to error log */
|
||||
errflag|= ME_NOREFRESH;
|
||||
break;
|
||||
}
|
||||
case HA_ERR_INDEX_FILE_FULL:
|
||||
{
|
||||
textno=ER_INDEX_FILE_FULL;
|
||||
/* Write the error message to error log */
|
||||
errflag|= ME_NOREFRESH;
|
||||
break;
|
||||
}
|
||||
case HA_ERR_LOCK_WAIT_TIMEOUT:
|
||||
textno=ER_LOCK_WAIT_TIMEOUT;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user