This is an automated email from the ASF dual-hosted git repository.

wenchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 4490fd0  [SPARK-27001][SQL][FOLLOW-UP] Drop Serializable in 
WalkedTypePath
4490fd0 is described below

commit 4490fd0ff012eeec3abe9745e677ea0dc5b5fcf8
Author: Takeshi Yamamuro <yamam...@apache.org>
AuthorDate: Tue Mar 5 23:05:50 2019 +0800

    [SPARK-27001][SQL][FOLLOW-UP] Drop Serializable in WalkedTypePath
    
    ## What changes were proposed in this pull request?
    This pr tried to drop `Serializable` in `WalkedTypePath`.
    
    ## How was this patch tested?
    Pass Jenkins.
    
    Closes #23973 from maropu/SPARK-27001-FOLLOWUP.
    
    Authored-by: Takeshi Yamamuro <yamam...@apache.org>
    Signed-off-by: Wenchen Fan <wenc...@databricks.com>
---
 .../src/main/scala/org/apache/spark/sql/catalyst/WalkedTypePath.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/WalkedTypePath.scala
 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/WalkedTypePath.scala
index cdb55b8..cbf1f01 100644
--- 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/WalkedTypePath.scala
+++ 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/WalkedTypePath.scala
@@ -22,7 +22,7 @@ package org.apache.spark.sql.catalyst
  * Note that this class adds new path in prior to recorded paths so it 
maintains
  * the paths as reverse order.
  */
-case class WalkedTypePath(private val walkedPaths: Seq[String] = Nil) extends 
Serializable {
+case class WalkedTypePath(private val walkedPaths: Seq[String] = Nil) {
   def recordRoot(className: String): WalkedTypePath =
     newInstance(s"""- root class: "$className"""")
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to