diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-03-14 00:24:06 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-03-14 00:25:26 +0200 |
commit | 06f1f1aa6e3dbc1efcd623378fe415b27c32b944 (patch) | |
tree | 3b6a26be2d56039f193e48b31806d55e5faddf04 /sql | |
parent | 032678ad18498bab01d41779313e48df1990f780 (diff) | |
download | mariadb-git-06f1f1aa6e3dbc1efcd623378fe415b27c32b944.tar.gz |
Make ELOOP be considered a File Not Found error when it comes from handlerton
Fix symlink-aria && symlink-myisam to account for this possibility.
Diffstat (limited to 'sql')
-rw-r--r-- | sql/handler.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index 8b0f885bb63..7fa8afdb253 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -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: |