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

Remove windows ifdefs

This commit is contained in:
Leonid Fedorov
2023-03-02 15:59:42 +00:00
parent 123c345b40
commit 56f2346083
328 changed files with 9 additions and 19602 deletions

View File

@ -57,12 +57,10 @@ namespace
{
int setUp()
{
#ifndef _MSC_VER
string cmd = "/bin/rm -f " + logFile + " >/dev/null 2>&1";
int rc = system(cmd.c_str());
cmd = "/bin/touch -f " + logFile + " >/dev/null 2>&1";
rc = system(cmd.c_str());
#endif
return rc;
}
@ -310,12 +308,7 @@ int main(int argc, char* argv[])
if (canWrite)
rc = system(cmd.c_str());
else
#ifdef _MSC_VER
(void)0;
#else
cerr << cmd << endl;
#endif
cmd = "save_brm";