Skip to content

Commit

Permalink
Fix name of scan (NVIDIA#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
revans2 authored Jun 17, 2020
1 parent 5193222 commit a6ecf8f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ case class GpuFileSourceScanExec(
override val tableIdentifier: Option[TableIdentifier])
extends DataSourceScanExec with GpuExec {

override val nodeName: String = {
s"GpuScan $relation ${tableIdentifier.map(_.unquotedString).getOrElse("")}"
}

private[this] val wrapped: FileSourceScanExec = {
val tclass = classOf[org.apache.spark.sql.execution.FileSourceScanExec]
val constructors = tclass.getConstructors()
Expand Down

0 comments on commit a6ecf8f

Please sign in to comment.