Skip to content

Commit ffd237a

Browse files
author
Andrew Or
committed
Fix style
1 parent 202dac1 commit ffd237a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/execution/InsertIntoHiveTable.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,5 +258,7 @@ case class InsertIntoHiveTable(
258258

259259
override def executeCollect(): Array[Row] = sideEffectResult.toArray
260260

261-
protected override def doExecute(): RDD[Row] = sqlContext.sparkContext.parallelize(sideEffectResult, 1)
261+
protected override def doExecute(): RDD[Row] = {
262+
sqlContext.sparkContext.parallelize(sideEffectResult, 1)
263+
}
262264
}

0 commit comments

Comments
 (0)