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

MCOL-1531 Don't compare alias in == operators for ReturnedColumn types

This commit is contained in:
David Hall
2018-07-10 14:03:17 -05:00
parent af6108da81
commit 11d2094089
2 changed files with 6 additions and 6 deletions

View File

@ -345,10 +345,10 @@ bool ArithmeticColumn::operator==(const ArithmeticColumn& t) const
}
else if (fExpression != NULL || t.fExpression != NULL)
return false;
if (fAlias != t.fAlias)
return false;
if (fTableAlias != t.fTableAlias)
return false;
// if (fAlias != t.fAlias)
// return false;
// if (fTableAlias != t.fTableAlias)
// return false;
if (fData != t.fData)
return false;
return true;