1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-1531 Remove commented fields from equality functions

This commit is contained in:
David Hall
2018-07-24 09:10:46 -05:00
parent 11d2094089
commit ec9069853e
6 changed files with 1 additions and 24 deletions

View File

@ -345,10 +345,6 @@ 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 (fData != t.fData)
return false;
return true;