Skip to content

Commit 4490fd0

Browse files
maropucloud-fan
authored andcommitted
[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 <[email protected]> Signed-off-by: Wenchen Fan <[email protected]>
1 parent 3909223 commit 4490fd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/WalkedTypePath.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package org.apache.spark.sql.catalyst
2222
* Note that this class adds new path in prior to recorded paths so it maintains
2323
* the paths as reverse order.
2424
*/
25-
case class WalkedTypePath(private val walkedPaths: Seq[String] = Nil) extends Serializable {
25+
case class WalkedTypePath(private val walkedPaths: Seq[String] = Nil) {
2626
def recordRoot(className: String): WalkedTypePath =
2727
newInstance(s"""- root class: "$className"""")
2828

0 commit comments

Comments
 (0)