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.
2 parents 2b46c4b + c9e67de commit 3868f6cCopy full SHA for 3868f6c
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/SpecificRow.scala
@@ -57,7 +57,7 @@ s"""
57
}.foreach(println)
58
}}}
59
*/
60
-abstract class MutableValue {
+abstract class MutableValue extends Serializable {
61
var isNull: Boolean = true
62
def boxed: Any
63
def update(v: Any)
@@ -197,6 +197,8 @@ class SpecificMutableRow(val values: Array[MutableValue]) extends MutableRow {
197
case _ => new MutableAny
198
}.toArray)
199
200
+ def this() = this(Seq.empty)
201
+
202
override def length: Int = values.length
203
204
override def setNullAt(i: Int): Unit = {
0 commit comments