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

MCOL-4696: get rid of boost::iequals

This commit is contained in:
Leonid Fedorov
2024-08-13 13:54:45 +00:00
committed by Leonid Fedorov
parent 4aa281645e
commit 4b411b3968
9 changed files with 62 additions and 43 deletions

View File

@ -331,7 +331,7 @@ struct cal_connection_info
configVal = cf->getConfig("SystemConfig", "PrimaryUMModuleName");
std::string module = execplan::ClientRotator::getModule();
if (boost::iequals(configVal, module))
if (datatypes::ASCIIStringCaseInsensetiveEquals(configVal, module))
return false;
return true;