We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f917e06 commit 4c32c04Copy full SHA for 4c32c04
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/ExpressionEvaluationSuite.scala
@@ -776,6 +776,7 @@ class ExpressionEvaluationSuite extends FunSuite {
776
}
777
778
test("comparison operators for RichDate and RichTimestamp") {
779
+ import org.scalatest.Assertions.{convertToEqualizer => EQ}
780
assert(EQ(RichDate("2014-11-05") < RichDate("2014-11-06")).===(true))
781
assert(EQ(RichDate("2014-11-05") <= RichDate("2013-11-06")).===(false))
782
assert(EQ(RichTimestamp("2014-11-05 12:34:56.5432") > RichTimestamp("2014-11-05 00:00:00"))
0 commit comments