You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
Revert "MCOL-1559 trim spaces before compare"
This reverts commit 8d553ae9fb.
This commit is contained in:
@@ -460,11 +460,11 @@ inline bool PredicateOperator::getBoolVal(rowgroup::Row& row, bool& isNull, Retu
|
||||
if (isNull)
|
||||
return false;
|
||||
|
||||
std::string val1 = lop->getStrVal(row, isNull);
|
||||
const std::string& val1 = lop->getStrVal(row, isNull);
|
||||
if (isNull)
|
||||
return false;
|
||||
|
||||
std::string val2 = rop->getStrVal(row, isNull);
|
||||
const std::string& val2 = rop->getStrVal(row, isNull);
|
||||
if (isNull)
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user