You've already forked mariadb-columnstore-engine
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:
@ -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;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user