Skip to content

Commit

Permalink
fix bug in TimestampArithmetic.equals
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Nov 11, 2024
1 parent b744a28 commit e49b92f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ public boolean equals(Object o) {
}
TimestampArithmetic other = (TimestampArithmetic) o;
return Objects.equals(funcName, other.funcName) && Objects.equals(timeUnit, other.timeUnit)
&& op.equals(other.op)
&& Objects.equals(left(), other.left()) && Objects.equals(right(), other.right());
}
}

0 comments on commit e49b92f

Please sign in to comment.