Hyukjin Kwon created SPARK-15250: ------------------------------------ Summary: Remove deprecated json API in DataFrameReader Key: SPARK-15250 URL: https://issues.apache.org/jira/browse/SPARK-15250 Project: Spark Issue Type: Improvement Components: SQL Affects Versions: 2.0.0 Reporter: Hyukjin Kwon Priority: Minor
I see {{json() }}API in {{DataFrameReader}} should be removed as below: {code} // TODO: Remove this one in Spark 2.0. def json(path: String): DataFrame = format("json").load(path) {code} It seems this is because another {{json()}} API below covers the above {code} def json(paths: String*): DataFrame = format("json").load(paths : _*) {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org