1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Merge branch 'develop-1.1' into develop-1.2-merge-up-20190514

This commit is contained in:
Andrew Hutchings
2019-05-14 14:26:41 +01:00
8 changed files with 36 additions and 22 deletions

View File

@ -359,7 +359,19 @@ int main(int argc, char* argv[])
exit(-1);
}
//setup System Language
// WaitPeriod
try
{
string waitPeriod = sysConfigOld->getConfig(SystemSection, "WaitPeriod");
if (waitPeriod.length() > 0)
{
sysConfigNew->setConfig(SystemSection, "WaitPeriod", waitPeriod);
}
}
catch (...)
{ }
//setup System Language
string systemLang = "C";
try