MCPcopy Create free account
hub / github.com/ByConity/ByConity / equals

Method equals

src/DataTypes/DataTypeMap.cpp:166–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164}
165
166bool DataTypeMap::equals(const IDataType & rhs) const
167{
168 if (typeid(rhs) != typeid(*this))
169 return false;
170
171 const DataTypeMap & rhs_map = static_cast<const DataTypeMap &>(rhs);
172 return nested->equals(*rhs_map.nested);
173}
174
175bool DataTypeMap::isComparable() const
176{

Callers 15

readImplMethod · 0.45
checkCalculatedFunction · 0.45
readSchemaFromFormatImplFunction · 0.45
readColumnFromORCColumnFunction · 0.45
DictionaryStructureMethod · 0.45
createLayoutFunction · 0.45
planSetOperationMethod · 0.45
visitJoinNodeMethod · 0.45

Calls

no outgoing calls

Tested by 1

operator==Function · 0.36