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:
@ -316,8 +316,8 @@ bool ConstantColumn::operator==(const ConstantColumn& t) const
|
||||
return false;
|
||||
if (fType != t.fType)
|
||||
return false;
|
||||
if (fAlias != t.fAlias)
|
||||
return false;
|
||||
// if (fAlias != t.fAlias)
|
||||
// return false;
|
||||
if (fData != t.fData)
|
||||
return false;
|
||||
if (fReturnAll != t.fReturnAll)
|
||||
|
Reference in New Issue
Block a user