Skip to content

Commit 13afde0

Browse files
committed
fix small bug
1 parent 4b681f4 commit 13afde0

File tree

1 file changed

+1
-1
lines changed
  • sql/hive-thriftserver/v0.13.1/src/main/scala/org/apache/spark/sql/hive/thriftserver

1 file changed

+1
-1
lines changed

sql/hive-thriftserver/v0.13.1/src/main/scala/org/apache/spark/sql/hive/thriftserver/Shim.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private[hive] class SparkExecuteStatementOperation(
167167
if (sparkRow.isNullAt(curCol)) {
168168
row += null
169169
} else {
170-
row += addNonNullColumnValue(sparkRow, row, curCol)
170+
addNonNullColumnValue(sparkRow, row, curCol)
171171
}
172172
curCol += 1
173173
}

0 commit comments

Comments
 (0)