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 f5cad4e commit 1743a73Copy full SHA for 1743a73
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/types/decimal/DecimalSuite.scala
@@ -112,7 +112,6 @@ class DecimalSuite extends FunSuite with PrivateMethodTester {
112
test("hash code") {
113
assert(Decimal(123).hashCode() === (123).##)
114
assert(Decimal(-123).hashCode() === (-123).##)
115
- assert(Decimal(123.312).hashCode() === (123.312).##)
116
assert(Decimal(Int.MaxValue).hashCode() === Int.MaxValue.##)
117
assert(Decimal(Long.MaxValue).hashCode() === Long.MaxValue.##)
118
assert(Decimal(BigDecimal(123)).hashCode() === (123).##)
0 commit comments