Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Scalastyle fix.
  • Loading branch information
concretevitamin committed Jun 20, 2014
commit 0e64b084000f1075da994c0f1cffd254c846bbd7
4 changes: 2 additions & 2 deletions sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import scala.collection.JavaConverters._
*/
trait SQLConf {

/************************** Spark SQL Params/Hints ********************/
/** ************************ Spark SQL Params/Hints ******************* */

/** Number of partitions to use for shuffle operators. */
private[spark] def numShufflePartitions: Int = get("spark.sql.shuffle.partitions", "200").toInt
Expand All @@ -43,7 +43,7 @@ trait SQLConf {
private[spark] def autoConvertJoinSize: Int =
get("spark.sql.auto.convert.join.size", "10000").toInt

/************************ SQLConf functionality methods *************/
/** ********************** SQLConf functionality methods ************ */

@transient
private val settings = java.util.Collections.synchronizedMap(
Expand Down