Fix AggregateExpression not reporting content equality

This commit is contained in:
Simon Binder 2019-08-19 20:51:10 +02:00
parent 420b1090cc
commit 26e28e9ddc
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 3 deletions

View File

@ -57,9 +57,7 @@ class AggregateExpression extends Expression
@override
bool contentEquals(AggregateExpression other) {
return other.name == name &&
other.windowDefinition == windowDefinition &&
other.windowName == windowName;
return other.name == name && other.windowName == windowName;
}
}