Github user tejasapatil commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20226#discussion_r162769562
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/LocalTableScanExec.scala 
---
    @@ -30,6 +30,8 @@ case class LocalTableScanExec(
         output: Seq[Attribute],
         @transient rows: Seq[InternalRow]) extends LeafExecNode {
     
    +  override val nodeName: String = s"Scan LocalTable 
${output.map(_.name).mkString("[", ",", "]")}"
    --- End diff --
    
    I believe you are referring to the duplication at : 
    
https://github.com/apache/spark/blob/3f958a99921d149fb9fdf7ba7e78957afdad1405/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/trees/TreeNode.scala#L466
    
    ```
    def simpleString: String = s"$nodeName $argString".trim
    ```
    
    Am changing this line to just have `Scan LocalTable`


---

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

Reply via email to