1
0
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:
Andrew Hutchings
2019-05-23 13:48:43 +01:00
parent f3449fe2f4
commit e7a331f3f8
2 changed files with 4 additions and 2 deletions

View File

@@ -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;