You've already forked mariadb-columnstore-engine
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user