Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Or committed May 8, 2015
1 parent 202dac1 commit ffd237a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,5 +258,7 @@ case class InsertIntoHiveTable(

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

protected override def doExecute(): RDD[Row] = sqlContext.sparkContext.parallelize(sideEffectResult, 1)
protected override def doExecute(): RDD[Row] = {
sqlContext.sparkContext.parallelize(sideEffectResult, 1)
}
}

0 comments on commit ffd237a

Please sign in to comment.