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-1559 trailing space compare
This commit is contained in:
@ -456,17 +456,7 @@ inline bool PredicateOperator::getBoolVal(rowgroup::Row& row, bool& isNull, Retu
|
|||||||
isNull = false;
|
isNull = false;
|
||||||
return !ret;
|
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);
|
std::string val1 = lop->getStrVal(row, isNull);
|
||||||
if (isNull)
|
if (isNull)
|
||||||
|
Reference in New Issue
Block a user