1
0
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:
Vicențiu Ciorbaru
2017-03-14 00:24:06 +02:00
parent 032678ad18
commit 06f1f1aa6e
4 changed files with 7 additions and 6 deletions

View File

@ -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: