Sean Owen created SPARK-25821:
---------------------------------
Summary: Remove SQLContext methods deprecated as of Spark 1.4
Key: SPARK-25821
URL: https://issues.apache.org/jira/browse/SPARK-25821
Project: Spark
Issue Type: Task
Components: SQL
Affects Versions: 2.4.0
Reporter: Sean Owen
Assignee: Sean Owen
There are several SQLContext methods that have been deprecate since Spark 1.4,
like:
{code:java}
@deprecated("Use read.parquet() instead.", "1.4.0")
@scala.annotation.varargs
def parquetFile(paths: String*): DataFrame = {
if (paths.isEmpty) {
emptyDataFrame
} else {
read.parquet(paths : _*)
}
}{code}
Let's remove them in Spark 3.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]