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 7a39456 commit 7b7e6e3Copy full SHA for 7b7e6e3
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/SpecificMutableRow.scala
@@ -315,6 +315,6 @@ final class SpecificMutableRow(val values: Array[MutableValue]) extends MutableR
315
case r: MutableDouble => r.value.asInstanceOf[T]
316
case r: MutableBoolean => r.value.asInstanceOf[T]
317
case r: MutableLong => r.value.asInstanceOf[T]
318
- case r => r.asInstanceOf[MutableAny].value.asInstanceOf[T]
+ case r: MutableAny => r.value.asInstanceOf[T]
319
}
320
0 commit comments