mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
Merge hundin.mysql.fi:/home/heikki/mysql-4.0
into hundin.mysql.fi:/home/heikki/mysql-4.1
This commit is contained in:
commit
80fca0a075
1 changed files with 9 additions and 0 deletions
|
@ -299,6 +299,15 @@ os_file_get_last_error(
|
|||
return(OS_FILE_NOT_FOUND);
|
||||
} else if (err == EEXIST) {
|
||||
return(OS_FILE_ALREADY_EXISTS);
|
||||
#ifdef UNIV_AIX
|
||||
} else if (err == 0) {
|
||||
fprintf(stderr,
|
||||
"InnoDB: errno is 0. Since AIX 5.1 after security patch ML7 erroneously\n"
|
||||
"InnoDB: sets errno to 0 when it should be EEXIST, we assume that the real\n"
|
||||
"InnoDB: error here was EEXIST.\n");
|
||||
|
||||
return(OS_FILE_ALREADY_EXISTS);
|
||||
#endif
|
||||
} else {
|
||||
return(100 + err);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue