Skip to content

Commit

Permalink
Quick Fix Alias Type Names (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelweilsalesforce authored and tovbinm committed Jun 27, 2019
1 parent e552147 commit 736df96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private[op] abstract class JoinedReader[T, U]
)(implicit spark: SparkSession): (DataFrame, Array[String]) = {

def getData(r: DataReader[_]): DataFrame = {
val readerFeatures = rawFeatures.filter { f => getGenStage(f).tti.tpe.typeSymbol.fullName == r.fullTypeName }
val readerFeatures = rawFeatures.filter { f => getGenStage(f).tti.tpe.toString == r.fullTypeName }
r.generateDataFrame(readerFeatures, opParams)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private[readers] trait ReaderType[T] extends Serializable {
*
* @return full input type name
*/
final def fullTypeName: String = wtt.tpe.typeSymbol.fullName
final def fullTypeName: String = wtt.tpe.toString

/**
* Short reader input type name
Expand Down

0 comments on commit 736df96

Please sign in to comment.