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

@ -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)