Skip to content

Commit

Permalink
airframe-sql: Unqualify outputColumns if AllColumns doesn't have qual…
Browse files Browse the repository at this point in the history
…ifier
  • Loading branch information
takezoe committed Feb 19, 2023
1 parent aaa294a commit 768c030
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -520,10 +520,7 @@ object Expression {
}
}
override def outputColumns: Seq[Attribute] = {
qualifier match {
case Some(x) => inputColumns.map(_.withQualifier(x))
case None => inputColumns
}
inputColumns.map(_.withQualifier(qualifier))
}

override def dataType: DataType = {
Expand Down

0 comments on commit 768c030

Please sign in to comment.