We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 111e8ce + 9053f92 commit bca831eCopy full SHA for bca831e
storage/innobase/os/os0file.cc
@@ -3087,9 +3087,9 @@ os_file_status(
3087
{
3088
#ifdef __WIN__
3089
int ret;
3090
- struct _stat statinfo;
+ struct _stat64 statinfo;
3091
3092
- ret = _stat(path, &statinfo);
+ ret = _stat64(path, &statinfo);
3093
if (ret && (errno == ENOENT || errno == ENOTDIR)) {
3094
/* file does not exist */
3095
*exists = FALSE;
@@ -3162,9 +3162,9 @@ os_file_get_status(
3162
3163
3164
3165
3166
3167
3168
3169
3170
0 commit comments