1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +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

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