Revert "[Enhancement](Nereids)enable nereids DML by default. (#21539)" (#22013)

This reverts commit f668b3965effbd5df4902f20b496cb6b6642414c.
This commit is contained in:
Kaijie Chen
2023-07-20 11:32:54 +08:00
committed by GitHub
parent a859a93b22
commit 0f116ce148
17 changed files with 26 additions and 22 deletions

View File

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