Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/20226#discussion_r162493722 --- 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 -- It sounds like we have duplicate info about `output` in `stringArgs`.
--- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org