This reverts commit f668b3965effbd5df4902f20b496cb6b6642414c.
This commit is contained in:
@ -111,13 +111,12 @@ public class AggStateType extends ScalarType {
|
||||
return false;
|
||||
}
|
||||
AggStateType other = (AggStateType) o;
|
||||
// compare with the basic type.
|
||||
if (other.subTypes == null) {
|
||||
return true;
|
||||
}
|
||||
if ((subTypes == null) != (other.getSubTypes() == null)) {
|
||||
return false;
|
||||
}
|
||||
if (subTypes == null) {
|
||||
return true;
|
||||
}
|
||||
int subTypeNumber = subTypeNullables.size();
|
||||
if (subTypeNumber != other.subTypeNullables.size()) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user