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 791b96a commit 09e587aCopy full SHA for 09e587a
sql/core/src/main/scala/org/apache/spark/sql/execution/SparkSqlSerializer2.scala
@@ -387,7 +387,6 @@ private[sql] object SparkSqlSerializer2 {
387
if (in.readByte() == NULL) {
388
mutableRow.setNullAt(i)
389
} else {
390
- // TODO: reuse the byte array in the UTF8String.
391
val length = in.readInt()
392
val bytes = new Array[Byte](length)
393
in.readFully(bytes)
0 commit comments