You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +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)
|
else if (fExpression != NULL || t.fExpression != NULL)
|
||||||
return false;
|
return false;
|
||||||
if (fAlias != t.fAlias)
|
// if (fAlias != t.fAlias)
|
||||||
return false;
|
// return false;
|
||||||
if (fTableAlias != t.fTableAlias)
|
// if (fTableAlias != t.fTableAlias)
|
||||||
return false;
|
// return false;
|
||||||
if (fData != t.fData)
|
if (fData != t.fData)
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
|
@ -316,8 +316,8 @@ bool ConstantColumn::operator==(const ConstantColumn& t) const
|
|||||||
return false;
|
return false;
|
||||||
if (fType != t.fType)
|
if (fType != t.fType)
|
||||||
return false;
|
return false;
|
||||||
if (fAlias != t.fAlias)
|
// if (fAlias != t.fAlias)
|
||||||
return false;
|
// return false;
|
||||||
if (fData != t.fData)
|
if (fData != t.fData)
|
||||||
return false;
|
return false;
|
||||||
if (fReturnAll != t.fReturnAll)
|
if (fReturnAll != t.fReturnAll)
|
||||||
|
Reference in New Issue
Block a user