1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +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()) if (!cfStr.empty())
*fTmpDirp = cfStr; *fTmpDirp = cfStr;
return *fTmpDirp;
#else #else
@ -140,12 +142,11 @@ const string StartUp::tmpDir()
catch (...) catch (...)
{} {}
*fTmpDirp = TempFileDir; return TempFileDir;
#endif #endif
return *fTmpDirp;
} }
} }