mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Make ELOOP be considered a File Not Found error when it comes from handlerton
Fix symlink-aria && symlink-myisam to account for this possibility.
This commit is contained in:
@ -3372,6 +3372,7 @@ void handler::print_error(int error, myf errflag)
|
||||
break;
|
||||
case ENOENT:
|
||||
case ENOTDIR:
|
||||
case ELOOP:
|
||||
textno=ER_FILE_NOT_FOUND;
|
||||
break;
|
||||
case ENOSPC:
|
||||
|
Reference in New Issue
Block a user