mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
bug#9724 - ndb restart
if file already open occur print files...
This commit is contained in:
parent
bbd0aa6cc3
commit
0bfc924672
1 changed files with 8 additions and 2 deletions
|
@ -82,8 +82,14 @@ inline bool OpenFiles::insert(AsyncFile* file, Uint16 id){
|
|||
continue;
|
||||
|
||||
if(strcmp(m_files[i].m_file->theFileName.c_str(),
|
||||
file->theFileName.c_str()) == 0){
|
||||
ERROR_SET(fatal, AFS_ERROR_ALLREADY_OPEN,"","OpenFiles::insert()");
|
||||
file->theFileName.c_str()) == 0)
|
||||
{
|
||||
BaseString names;
|
||||
names.assfmt("open: >%s< existing: >%s<",
|
||||
file->theFileName.c_str(),
|
||||
m_files[i].m_file->theFileName.c_str());
|
||||
ERROR_SET(fatal, AFS_ERROR_ALLREADY_OPEN, names.c_str(),
|
||||
"OpenFiles::insert()");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue