1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-5021 Some minor fixes.

This commit is contained in:
Gagan Goel
2022-07-14 17:53:17 -04:00
parent 94e9f55940
commit 1355237ca3
8 changed files with 46 additions and 15 deletions

View File

@ -188,13 +188,13 @@ void Config::checkReload()
const std::string fastDeleteTemp = cf->getConfig("WriteEngine", "FastDelete");
if (fastDeleteTemp.length() == 0 || boost::iequals(fastDeleteTemp, "false"))
if (fastDeleteTemp.length() != 0 && boost::iequals(fastDeleteTemp, "true"))
{
m_FastDelete = false;
m_FastDelete = true;
}
else
{
m_FastDelete = true;
m_FastDelete = false;
}
//--------------------------------------------------------------------------