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 1a3d0cd commit e09e898Copy full SHA for e09e898
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/rows.scala
@@ -201,7 +201,7 @@ class GenericRow(protected[sql] val values: Array[Any]) extends Row {
201
202
override def toSeq: Seq[Any] = values.toSeq
203
204
- override def copy(): Row = this
+ override def copy(): Row = new GenericRow(values.clone())
205
}
206
207
class GenericRowWithSchema(values: Array[Any], override val schema: StructType)
0 commit comments