1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-520 - fix buildbot startup issue

This commit is contained in:
David Hill
2018-11-07 14:51:19 -06:00
parent 9dedc8cc3e
commit d1a4ede32f

View File

@ -97,6 +97,8 @@ const string StartUp::tmpDir()
if (!cfStr.empty())
*fTmpDirp = cfStr;
return *fTmpDirp;
#else
@ -140,12 +142,11 @@ const string StartUp::tmpDir()
catch (...)
{}
*fTmpDirp = TempFileDir;
return TempFileDir;
#endif
return *fTmpDirp;
}
}