You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by srowen <gi...@git.apache.org> on 2018/11/01 14:19:17 UTC

[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

GitHub user srowen opened a pull request:

    https://github.com/apache/spark/pull/22921

    [SPARK-25908][CORE][SQL] Remove old deprecated items in Spark 3

    ## What changes were proposed in this pull request?
    
    - Remove some AccumulableInfo .apply() methods
    - Remove non-label-specific multiclass precision/recall/fScore in favor of accuracy
    - Remove toDegrees/toRadians in favor of degrees/radians
    - Remove approxCountDistinct in favor of approx_count_distinct
    - Remove unused Python StorageLevel constants
    - Remove Dataset unionAll in favor of union
    - Remove unused multiclass option in libsvm parsing
    - Remove references to deprecated spark configs like spark.yarn.am.port
    - Remove TaskContext.isRunningLocally
    - Remove ShuffleMetrics.shuffle* methods
    - Remove BaseReadWrite.context in favor of session
    - Remove Column.!== in favor of =!=
    - Remove Dataset.explode
    - Remove Dataset.registerTempTable
    - Remove SQLContext.getOrCreate, setActive, clearActive, constructors
    
    Not touched yet
    
    - everything else in MLLib
    - HiveContext
    - Anything deprecated more recently than 2.0.0, generally
    
    ## How was this patch tested?
    
    Existing tests

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/srowen/spark SPARK-25908

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/22921.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #22921
    
----
commit 259e7d15f302a02fbf09dbc63f46cd1d690b1c2a
Author: Sean Owen <se...@...>
Date:   2018-11-01T14:18:29Z

    Remove many older deprecated items in Spark 3

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r231403827
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -319,6 +319,27 @@ setMethod("acos",
                 column(jc)
               })
     
    +#' @details
    +#' \code{approx_count_distinct}: Returns the approximate number of distinct items in a group.
    +#'
    +#' @rdname column_aggregate_functions
    +#' @aliases approx_count_distinct approx_count_distinct,Column-method
    +#' @examples
    +#'
    +#' \dontrun{
    +#' head(select(df, approx_count_distinct(df$gear)))
    +#' head(select(df, approx_count_distinct(df$gear, 0.02)))
    +#' head(select(df, countDistinct(df$gear, df$cyl)))
    +#' head(select(df, n_distinct(df$gear)))
    +#' head(distinct(select(df, "gear")))}
    --- End diff --
    
    we only need one set - they both are `@rdname column_aggregate_functions` so will duplicate all other examples


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98537/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230135473
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala ---
    @@ -62,17 +62,6 @@ class SQLContext private[sql](val sparkSession: SparkSession)
     
       sparkSession.sparkContext.assertNotStopped()
     
    -  // Note: Since Spark 2.0 this class has become a wrapper of SparkSession, where the
    --- End diff --
    
    keep these two lines?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4728/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230057481
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -748,7 +748,7 @@ setGeneric("add_months", function(y, x) { standardGeneric("add_months") })
     
     #' @rdname column_aggregate_functions
     #' @name NULL
    -setGeneric("approxCountDistinct", function(x, ...) { standardGeneric("approxCountDistinct") })
    +setGeneric("approx_count_distinct", function(x, ...) { standardGeneric("approx_count_distinct") })
    --- End diff --
    
    @felixcheung might want to check if I'm handling these R changes correctly


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230449173
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -1641,30 +1641,30 @@ setMethod("tanh",
               })
     
     #' @details
    -#' \code{toDegrees}: Converts an angle measured in radians to an approximately equivalent angle
    +#' \code{degrees}: Converts an angle measured in radians to an approximately equivalent angle
     #' measured in degrees.
     #'
     #' @rdname column_math_functions
    -#' @aliases toDegrees toDegrees,Column-method
    -#' @note toDegrees since 1.4.0
    -setMethod("toDegrees",
    +#' @aliases degrees degrees,Column-method
    +#' @note degrees since 2.1.0
    --- End diff --
    
    degrees was added in Scala/Python in 2.1.0, which is what I was thinking of, but yeah really this must be since 3.0.0 right? I'll fix it.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r231125506
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -748,7 +748,7 @@ setGeneric("add_months", function(y, x) { standardGeneric("add_months") })
     
     #' @rdname column_aggregate_functions
     #' @name NULL
    -setGeneric("approxCountDistinct", function(x, ...) { standardGeneric("approxCountDistinct") })
    +setGeneric("approx_count_distinct", function(x, ...) { standardGeneric("approx_count_distinct") })
    --- End diff --
    
    It is, but then again that's exactly what was deprecated and removed in Python and Scala. Major versions can have breaking changes. Yes R isn't always in sync but that's a bug not a feature? Let me surface this to dev@ as I think it's going to come up a few more times.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230568088
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -319,23 +319,23 @@ setMethod("acos",
               })
     
     #' @details
    -#' \code{approxCountDistinct}: Returns the approximate number of distinct items in a group.
    +#' \code{approx_count_distinct}: Returns the approximate number of distinct items in a group.
     #'
     #' @rdname column_aggregate_functions
    -#' @aliases approxCountDistinct approxCountDistinct,Column-method
    +#' @aliases approx_count_distinct approx_count_distinct,Column-method
     #' @examples
     #'
     #' \dontrun{
    -#' head(select(df, approxCountDistinct(df$gear)))
    -#' head(select(df, approxCountDistinct(df$gear, 0.02)))
    +#' head(select(df, approx_count_distinct(df$gear)))
    +#' head(select(df, approx_count_distinct(df$gear, 0.02)))
     #' head(select(df, countDistinct(df$gear, df$cyl)))
     #' head(select(df, n_distinct(df$gear)))
     #' head(distinct(select(df, "gear")))}
    -#' @note approxCountDistinct(Column) since 1.4.0
    -setMethod("approxCountDistinct",
    +#' @note approx_count_distinct(Column) since 2.0.0
    --- End diff --
    
    it's actually new in R for 3.0.0 then


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98537 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98537/testReport)** for PR 22921 at commit [`af748d5`](https://github.com/apache/spark/commit/af748d5a2680ffbea859f186cf48c97e1d700ee5).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4805/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98536 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98536/testReport)** for PR 22921 at commit [`6bcbf79`](https://github.com/apache/spark/commit/6bcbf79a14866c2d6e11bfa7b89a095584cb8228).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98414 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98414/testReport)** for PR 22921 at commit [`57ef4e8`](https://github.com/apache/spark/commit/57ef4e81d0bad3a2631088488cc41ce230457406).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98373 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98373/testReport)** for PR 22921 at commit [`bd4f5ab`](https://github.com/apache/spark/commit/bd4f5ab56f0999b915432d07303dde91b258fc6b).
     * This patch **fails PySpark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230449544
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -275,15 +273,6 @@ def _():
     del _name, _doc
     
     
    -@since(1.3)
    -def approxCountDistinct(col, rsd=None):
    --- End diff --
    
    Yeah, in some cases the deprecated user-facing method was named the same way as some internal method and I changed the wrong one. I'll investigate.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    seems good to me; might want to leave this open for a few days so more people can take a look


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98354 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98354/testReport)** for PR 22921 at commit [`7a0ecd2`](https://github.com/apache/spark/commit/7a0ecd2d597c28bc0ab59716ef8327645c7789c1).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98561 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98561/testReport)** for PR 22921 at commit [`9f1ced3`](https://github.com/apache/spark/commit/9f1ced360a9eedea014f1ad3050b6589812b2033).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged to master


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230568378
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -319,23 +319,23 @@ setMethod("acos",
               })
     
     #' @details
    -#' \code{approxCountDistinct}: Returns the approximate number of distinct items in a group.
    +#' \code{approx_count_distinct}: Returns the approximate number of distinct items in a group.
     #'
     #' @rdname column_aggregate_functions
    -#' @aliases approxCountDistinct approxCountDistinct,Column-method
    +#' @aliases approx_count_distinct approx_count_distinct,Column-method
     #' @examples
     #'
     #' \dontrun{
    -#' head(select(df, approxCountDistinct(df$gear)))
    -#' head(select(df, approxCountDistinct(df$gear, 0.02)))
    +#' head(select(df, approx_count_distinct(df$gear)))
    +#' head(select(df, approx_count_distinct(df$gear, 0.02)))
     #' head(select(df, countDistinct(df$gear, df$cyl)))
     #' head(select(df, n_distinct(df$gear)))
     #' head(distinct(select(df, "gear")))}
    -#' @note approxCountDistinct(Column) since 1.4.0
    -setMethod("approxCountDistinct",
    +#' @note approx_count_distinct(Column) since 2.0.0
    --- End diff --
    
    Right, will fix that one too if I missed it, per https://github.com/apache/spark/pull/22921#discussion_r230449173


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r231024007
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -1641,30 +1641,30 @@ setMethod("tanh",
               })
     
     #' @details
    -#' \code{toDegrees}: Converts an angle measured in radians to an approximately equivalent angle
    +#' \code{degrees}: Converts an angle measured in radians to an approximately equivalent angle
     #' measured in degrees.
     #'
     #' @rdname column_math_functions
    -#' @aliases toDegrees toDegrees,Column-method
    -#' @note toDegrees since 1.4.0
    -setMethod("toDegrees",
    +#' @aliases degrees degrees,Column-method
    +#' @note degrees since 2.1.0
    --- End diff --
    
    yes.. (version here is R API specific)


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98551 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98551/testReport)** for PR 22921 at commit [`3070975`](https://github.com/apache/spark/commit/30709751ed52b8ee5a688f7e39cdd5878d07f769).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #4419 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4419/testReport)** for PR 22921 at commit [`9f1ced3`](https://github.com/apache/spark/commit/9f1ced360a9eedea014f1ad3050b6589812b2033).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98433 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98433/testReport)** for PR 22921 at commit [`df92f0f`](https://github.com/apache/spark/commit/df92f0fd48883adfd1c4881c03d86665b93d0831).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98480/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98536/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4702/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by holdenk <gi...@git.apache.org>.
Github user holdenk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230427828
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -1641,30 +1641,30 @@ setMethod("tanh",
               })
     
     #' @details
    -#' \code{toDegrees}: Converts an angle measured in radians to an approximately equivalent angle
    +#' \code{degrees}: Converts an angle measured in radians to an approximately equivalent angle
     #' measured in degrees.
     #'
     #' @rdname column_math_functions
    -#' @aliases toDegrees toDegrees,Column-method
    -#' @note toDegrees since 1.4.0
    -setMethod("toDegrees",
    +#' @aliases degrees degrees,Column-method
    +#' @note degrees since 2.1.0
    +setMethod("degrees",
               signature(x = "Column"),
               function(x) {
    -            jc <- callJStatic("org.apache.spark.sql.functions", "toDegrees", x@jc)
    +            jc <- callJStatic("org.apache.spark.sql.functions", "degrees", x@jc)
                 column(jc)
               })
     
     #' @details
    -#' \code{toRadians}: Converts an angle measured in degrees to an approximately equivalent angle
    +#' \code{radians}: Converts an angle measured in degrees to an approximately equivalent angle
     #' measured in radians.
     #'
     #' @rdname column_math_functions
    -#' @aliases toRadians toRadians,Column-method
    -#' @note toRadians since 1.4.0
    -setMethod("toRadians",
    +#' @aliases radians radians,Column-method
    +#' @note radians since 2.1.0
    --- End diff --
    
    Similar comment with degrees


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Yeah it's a good point that these weren't deprecated, but I assume they should have been. Same change, same time, same logic. given that it's a reasonably niche method, I thought it would be best to go ahead and be consistent here?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230568058
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -748,7 +748,7 @@ setGeneric("add_months", function(y, x) { standardGeneric("add_months") })
     
     #' @rdname column_aggregate_functions
     #' @name NULL
    -setGeneric("approxCountDistinct", function(x, ...) { standardGeneric("approxCountDistinct") })
    +setGeneric("approx_count_distinct", function(x, ...) { standardGeneric("approx_count_distinct") })
    --- End diff --
    
    my concern is that these are breaking changes in a version without having them deprecated first...
    could we leave the old one to redirect and add .Deprecate?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98480 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98480/testReport)** for PR 22921 at commit [`a6891f7`](https://github.com/apache/spark/commit/a6891f7bd139157261a12fb3b3bbb3dbbded4a8a).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r231554470
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -319,6 +319,27 @@ setMethod("acos",
                 column(jc)
               })
     
    +#' @details
    +#' \code{approx_count_distinct}: Returns the approximate number of distinct items in a group.
    +#'
    +#' @rdname column_aggregate_functions
    +#' @aliases approx_count_distinct approx_count_distinct,Column-method
    +#' @examples
    +#'
    +#' \dontrun{
    +#' head(select(df, approx_count_distinct(df$gear)))
    +#' head(select(df, approx_count_distinct(df$gear, 0.02)))
    +#' head(select(df, countDistinct(df$gear, df$cyl)))
    +#' head(select(df, n_distinct(df$gear)))
    +#' head(distinct(select(df, "gear")))}
    --- End diff --
    
    Thanks, @HyukjinKwon fixed this. Pending tests, does the change look OK to you on the R side @felixcheung ?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Looks okay to me too but I'd also leave this open for few more days.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98363 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98363/testReport)** for PR 22921 at commit [`d50b5b5`](https://github.com/apache/spark/commit/d50b5b5d3e51ae26020b2f9e1928896624c9b5fc).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98561 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98561/testReport)** for PR 22921 at commit [`9f1ced3`](https://github.com/apache/spark/commit/9f1ced360a9eedea014f1ad3050b6589812b2033).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98354/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4815/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98353 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98353/testReport)** for PR 22921 at commit [`259e7d1`](https://github.com/apache/spark/commit/259e7d15f302a02fbf09dbc63f46cd1d690b1c2a).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98354 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98354/testReport)** for PR 22921 at commit [`7a0ecd2`](https://github.com/apache/spark/commit/7a0ecd2d597c28bc0ab59716ef8327645c7789c1).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98373/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98363/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98480 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98480/testReport)** for PR 22921 at commit [`a6891f7`](https://github.com/apache/spark/commit/a6891f7bd139157261a12fb3b3bbb3dbbded4a8a).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98353 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98353/testReport)** for PR 22921 at commit [`259e7d1`](https://github.com/apache/spark/commit/259e7d15f302a02fbf09dbc63f46cd1d690b1c2a).
     * This patch **fails Python style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98373 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98373/testReport)** for PR 22921 at commit [`bd4f5ab`](https://github.com/apache/spark/commit/bd4f5ab56f0999b915432d07303dde91b258fc6b).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230057306
  
    --- Diff: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/MathExpressionsSuite.scala ---
    @@ -246,7 +246,7 @@ class MathExpressionsSuite extends SparkFunSuite with ExpressionEvalHelper {
     
       test("toDegrees") {
         testUnary(ToDegrees, math.toDegrees)
    -    checkConsistencyBetweenInterpretedAndCodegen(Acos, DoubleType)
    +    checkConsistencyBetweenInterpretedAndCodegen(ToDegrees, DoubleType)
    --- End diff --
    
    This was just a bug fix I spotted


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230156120
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala ---
    @@ -62,17 +62,6 @@ class SQLContext private[sql](val sparkSession: SparkSession)
     
       sparkSession.sparkContext.assertNotStopped()
     
    -  // Note: Since Spark 2.0 this class has become a wrapper of SparkSession, where the
    --- End diff --
    
    Makes sense, will add it back. Yeah will leave this open a short while to make sure there is time to comment.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98414 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98414/testReport)** for PR 22921 at commit [`57ef4e8`](https://github.com/apache/spark/commit/57ef4e81d0bad3a2631088488cc41ce230457406).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    LGTM except a minor comment about the test case. Also we need to fix the PySpark test failure 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/22921


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98363 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98363/testReport)** for PR 22921 at commit [`d50b5b5`](https://github.com/apache/spark/commit/d50b5b5d3e51ae26020b2f9e1928896624c9b5fc).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by holdenk <gi...@git.apache.org>.
Github user holdenk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230429014
  
    --- Diff: python/pyspark/storagelevel.py ---
    @@ -56,16 +56,3 @@ def __str__(self):
     StorageLevel.MEMORY_AND_DISK = StorageLevel(True, True, False, False)
     StorageLevel.MEMORY_AND_DISK_2 = StorageLevel(True, True, False, False, 2)
     StorageLevel.OFF_HEAP = StorageLevel(True, True, True, False, 1)
    -
    -"""
    -.. note:: The following four storage level constants are deprecated in 2.0, since the records
    --- End diff --
    
    cc @MLnick I know this was a thing on your radar in some way for dataframe caching maybe? Do we actually want to remove this for 3+?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4804/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98537 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98537/testReport)** for PR 22921 at commit [`af748d5`](https://github.com/apache/spark/commit/af748d5a2680ffbea859f186cf48c97e1d700ee5).
     * This patch **fails SparkR unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98536 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98536/testReport)** for PR 22921 at commit [`6bcbf79`](https://github.com/apache/spark/commit/6bcbf79a14866c2d6e11bfa7b89a095584cb8228).
     * This patch **fails SparkR unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by holdenk <gi...@git.apache.org>.
Github user holdenk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230427671
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -1641,30 +1641,30 @@ setMethod("tanh",
               })
     
     #' @details
    -#' \code{toDegrees}: Converts an angle measured in radians to an approximately equivalent angle
    +#' \code{degrees}: Converts an angle measured in radians to an approximately equivalent angle
     #' measured in degrees.
     #'
     #' @rdname column_math_functions
    -#' @aliases toDegrees toDegrees,Column-method
    -#' @note toDegrees since 1.4.0
    -setMethod("toDegrees",
    +#' @aliases degrees degrees,Column-method
    +#' @note degrees since 2.1.0
    --- End diff --
    
    I'm confused about the since annotation here, where was the degrees implementation in 2.1.0? When I look at https://spark.apache.org/docs/latest/api/R/index.html I don't see the `degrees` function just `toDegrees`>=?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98551/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #4419 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4419/testReport)** for PR 22921 at commit [`9f1ced3`](https://github.com/apache/spark/commit/9f1ced360a9eedea014f1ad3050b6589812b2033).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230568079
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -1641,30 +1641,30 @@ setMethod("tanh",
               })
     
     #' @details
    -#' \code{toDegrees}: Converts an angle measured in radians to an approximately equivalent angle
    +#' \code{degrees}: Converts an angle measured in radians to an approximately equivalent angle
     #' measured in degrees.
     #'
     #' @rdname column_math_functions
    -#' @aliases toDegrees toDegrees,Column-method
    -#' @note toDegrees since 1.4.0
    -setMethod("toDegrees",
    +#' @aliases degrees degrees,Column-method
    +#' @note degrees since 3.0.0
    +setMethod("degrees",
    --- End diff --
    
    `degrees` and `radians` will need to be added to NAMESPACE file for export


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230155788
  
    --- Diff: core/src/main/scala/org/apache/spark/SparkConf.scala ---
    @@ -639,20 +639,6 @@ private[spark] object SparkConf extends Logging {
        */
       private val deprecatedConfigs: Map[String, DeprecatedConfig] = {
         val configs = Seq(
    -      DeprecatedConfig("spark.cache.class", "0.8",
    --- End diff --
    
    Yeah I can add them back. Wasn't sure whether they are still valuable or just old.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230283948
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala ---
    @@ -279,27 +254,6 @@ class DataFrameSuite extends QueryTest with SharedSQLContext {
           structDf.select(hash($"a", $"record.*")))
       }
     
    -  test("Star Expansion - explode should fail with a meaningful message if it takes a star") {
    --- End diff --
    
    Can we rewrite this test case using select(explode()), like what we did in the following test cases?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4694/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230436963
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala ---
    @@ -279,27 +254,6 @@ class DataFrameSuite extends QueryTest with SharedSQLContext {
           structDf.select(hash($"a", $"record.*")))
       }
     
    -  test("Star Expansion - explode should fail with a meaningful message if it takes a star") {
    --- End diff --
    
    Yeah I'll try to bring back to the test case.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230784165
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -748,7 +748,7 @@ setGeneric("add_months", function(y, x) { standardGeneric("add_months") })
     
     #' @rdname column_aggregate_functions
     #' @name NULL
    -setGeneric("approxCountDistinct", function(x, ...) { standardGeneric("approxCountDistinct") })
    +setGeneric("approx_count_distinct", function(x, ...) { standardGeneric("approx_count_distinct") })
    --- End diff --
    
    I think my comment didn't get connected to this one -- @felixcheung what do you think about the argument that this almost surely was meant to be deprecated along with counterparts in Scala/Python? leaving them in would make this inconsistent. As the degrees, radians, and approxCountDistinct are reasonably niche and have a direct replacement that's compatible with older versions, I feel like this is OK for 3.0?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by holdenk <gi...@git.apache.org>.
Github user holdenk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230428697
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -275,15 +273,6 @@ def _():
     del _name, _doc
     
     
    -@since(1.3)
    -def approxCountDistinct(col, rsd=None):
    --- End diff --
    
    Looks like the removal of this is causing the test failure, maybe do a grep for `approxCountDistinct` in the tests?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98551 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98551/testReport)** for PR 22921 at commit [`3070975`](https://github.com/apache/spark/commit/30709751ed52b8ee5a688f7e39cdd5878d07f769).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r231023768
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -748,7 +748,7 @@ setGeneric("add_months", function(y, x) { standardGeneric("add_months") })
     
     #' @rdname column_aggregate_functions
     #' @name NULL
    -setGeneric("approxCountDistinct", function(x, ...) { standardGeneric("approxCountDistinct") })
    +setGeneric("approx_count_distinct", function(x, ...) { standardGeneric("approx_count_distinct") })
    --- End diff --
    
    I think it's super light weight to have a `approxCountDistinct` that calls `approx_count_distinct` with deprecation?
    I thought was that R API was not always sync or complete compare to python, and a breaking API change - ie. the job will fail - seems a bit drastic even in a major release.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4823/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4709/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r230132632
  
    --- Diff: core/src/main/scala/org/apache/spark/SparkConf.scala ---
    @@ -639,20 +639,6 @@ private[spark] object SparkConf extends Logging {
        */
       private val deprecatedConfigs: Map[String, DeprecatedConfig] = {
         val configs = Seq(
    -      DeprecatedConfig("spark.cache.class", "0.8",
    --- End diff --
    
    do we need to remove these? they are warnings for users if they set the wrong config right


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4776/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22921: [SPARK-25908][CORE][SQL] Remove old deprecated it...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22921#discussion_r231596680
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -1663,9 +1692,24 @@ setMethod("toDegrees",
     #' @aliases toRadians toRadians,Column-method
     #' @note toRadians since 1.4.0
     setMethod("toRadians",
    +signature(x = "Column"),
    --- End diff --
    
    fix indentation? 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4693/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    **[Test build #98433 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98433/testReport)** for PR 22921 at commit [`df92f0f`](https://github.com/apache/spark/commit/df92f0fd48883adfd1c4881c03d86665b93d0831).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4742/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98561/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98414/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98353/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22921: [SPARK-25908][CORE][SQL] Remove old deprecated items in ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22921
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98433/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org