aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2015-07-18 20:27:55 -0700
committerReynold Xin <rxin@databricks.com>2015-07-18 20:27:55 -0700
commit45d798c323ffe32bc2eba4dbd271c4572f5a30cf (patch)
tree4c53a8b7987ad29013859058c01a84e6cfb2ba25 /project
parent9914b1b2c5d5fe020f54d95f59f03023de2ea78a (diff)
downloadspark-45d798c323ffe32bc2eba4dbd271c4572f5a30cf.tar.gz
spark-45d798c323ffe32bc2eba4dbd271c4572f5a30cf.tar.bz2
spark-45d798c323ffe32bc2eba4dbd271c4572f5a30cf.zip
[SPARK-8278] Remove non-streaming JSON reader.
Author: Reynold Xin <rxin@databricks.com> Closes #7501 from rxin/jsonrdd and squashes the following commits: 767ec55 [Reynold Xin] More Mima 51f456e [Reynold Xin] Mima exclude. 789cb80 [Reynold Xin] Fixed compilation error. b4cf50d [Reynold Xin] [SPARK-8278] Remove non-streaming JSON reader.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 4e4e810ec3..36417f5df9 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -64,6 +64,9 @@ object MimaExcludes {
excludePackage("org.apache.spark.sql.execution"),
// Parquet support is considered private.
excludePackage("org.apache.spark.sql.parquet"),
+ // The old JSON RDD is removed in favor of streaming Jackson
+ ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.json.JsonRDD$"),
+ ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.json.JsonRDD"),
// local function inside a method
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.sql.SQLContext.org$apache$spark$sql$SQLContext$$needsConversion$1")