| 226 | } |
| 227 | |
| 228 | bool DataTypeAggregateFunction::equals(const IDataType & rhs) const |
| 229 | { |
| 230 | if (typeid(rhs) != typeid(*this)) |
| 231 | return false; |
| 232 | |
| 233 | auto lhs_state_type = function->getNormalizedStateType(); |
| 234 | auto rhs_state_type = typeid_cast<const DataTypeAggregateFunction &>(rhs).function->getNormalizedStateType(); |
| 235 | |
| 236 | return strictEquals(lhs_state_type, rhs_state_type); |
| 237 | } |
| 238 | |
| 239 | |
| 240 | SerializationPtr DataTypeAggregateFunction::doGetSerialization(const SerializationInfoSettings &) const |
no test coverage detected