Skip to content

Commit

Permalink
Add comments to the useJacksonStreamingAPI config flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Howell committed May 6, 2015
1 parent 6822712 commit e06a1dd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ private[sql] class SQLConf extends Serializable {

private[spark] def useSqlSerializer2: Boolean = getConf(USE_SQL_SERIALIZER2, "true").toBoolean

/**
* Selects between the new (true) and old (false) JSON handlers, to be removed in Spark 1.5.0
*/
private[spark] def useJacksonStreamingAPI: Boolean =
getConf(USE_JACKSON_STREAMING_API, "true").toBoolean

Expand Down

0 comments on commit e06a1dd

Please sign in to comment.