mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 23:25:34 +02:00
Windows-specific:
Fix for BUG#4375 "Windows specific directories are copied during replication": in the Windows version of my_dir(), do not show hidden or system files which Windows sometimes creates in the root directory of drive (like RECYCLER and SYSTEM VOLUME INFORMATION directories) (so this problem showed up only when the datadir was the root dir of a drive). This will make SHOW DATABASES display better, and will do no harm to MySQL. For example, DROP DATABASE will not miss some files, as MySQL creates no hidden or system files.
This commit is contained in:
parent
83dbc6b006
commit
912eb811ba
1 changed files with 9 additions and 0 deletions
|
|
@ -461,6 +461,15 @@ MY_DIR *my_dir(const char *path, myf MyFlags)
|
|||
else
|
||||
finfo.mystat= NULL;
|
||||
|
||||
/*
|
||||
Do not show hidden or system files which Windows sometimes creates. We
|
||||
would need to see how this can be achieved with a Borland compiler.
|
||||
*/
|
||||
#ifndef __BORLANDC__
|
||||
if (attrib & (_A_HIDDEN | _A_SYSTEM))
|
||||
continue;
|
||||
#endif
|
||||
|
||||
if (push_dynamic(dir_entries_storage, (gptr)&finfo))
|
||||
goto error;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue