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

MCOL-1559 trailing space compare

This commit is contained in:
David Hall
2019-04-09 16:34:45 -05:00
parent e71378d719
commit e2cb644484

View File

@ -456,18 +456,8 @@ inline bool PredicateOperator::getBoolVal(rowgroup::Row& row, bool& isNull, Retu
isNull = false;
return !ret;
}
#if 0
if (isNull)
return false;
const std::string& val1 = lop->getStrVal(row, isNull);
if (isNull)
return false;
return strCompare(val1, rop->getStrVal(row, isNull)) && !isNull;
#endif
// MCOL-1559
// MCOL-1559
std::string val1 = lop->getStrVal(row, isNull);
if (isNull)
return false;