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 Remove commented fields from equality functions
This commit is contained in:
@ -333,7 +333,6 @@ void SimpleColumn::serialize(messageqcpp::ByteStream& b) const
|
||||
b << fViewName;
|
||||
b << (uint32_t) fOid;
|
||||
b << fData;
|
||||
//b << fAlias;
|
||||
b << fTableAlias;
|
||||
b << (uint32_t) fSequence;
|
||||
b << static_cast<const ByteStream::doublebyte>(fIsInfiniDB);
|
||||
@ -350,7 +349,6 @@ void SimpleColumn::unserialize(messageqcpp::ByteStream& b)
|
||||
b >> fViewName;
|
||||
b >> (uint32_t&) fOid;
|
||||
b >> fData;
|
||||
//b >> fAlias;
|
||||
b >> fTableAlias;
|
||||
b >> (uint32_t&) fSequence;
|
||||
b >> reinterpret_cast< ByteStream::doublebyte&>(fIsInfiniDB);
|
||||
@ -370,16 +368,12 @@ bool SimpleColumn::operator==(const SimpleColumn& t) const
|
||||
return false;
|
||||
if (fColumnName != t.fColumnName)
|
||||
return false;
|
||||
// if (fIndexName != t.fIndexName)
|
||||
// return false;
|
||||
if (fViewName != t.fViewName)
|
||||
return false;
|
||||
if (fOid != t.fOid)
|
||||
return false;
|
||||
if (data() != t.data())
|
||||
return false;
|
||||
// if (fAlias != t.fAlias)
|
||||
// return false;
|
||||
if (fTableAlias != t.fTableAlias)
|
||||
return false;
|
||||
if (fAsc != t.fAsc)
|
||||
|
Reference in New Issue
Block a user