1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00
This commit is contained in:
David Hill
2018-09-24 11:50:56 -05:00
parent 72f514ca54
commit 681cfd34eb
20 changed files with 292 additions and 1245 deletions

View File

@ -188,9 +188,6 @@ int main(int argc, char* argv[])
string ccHistoryFile = HOME + "/.cc_history";
cout << startup::StartUp::installDir() << endl;
cout << startup::StartUp::tmpDir() << endl;
string cf = startup::StartUp::installDir() + "/etc/" + ConsoleCmdsFile;
fConfig = Config::makeConfig(cf);
@ -4919,8 +4916,12 @@ int processCommand(string* arguments)
}
break;
case 39:
case 39: // getSystemDirectories
{
cout << "System Installation and Temporary Logging Directories" << endl << endl;
cout << "System Installation Directory = " << startup::StartUp::installDir() << endl;
cout << "System Temporary Logging Directory = " << startup::StartUp::tmpDir() << endl;
}
break;