Skip to content

Commit eb6dd80

Browse files
committed
Fix compilation
1 parent 85e0744 commit eb6dd80

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ package object expressions {
163163
// Collect matching attributes given a name and a lookup.
164164
def collectMatches(name: String, candidates: Option[Seq[Attribute]]): Seq[Attribute] = {
165165
candidates.toSeq.flatMap(_.collect {
166-
case a if !a.isGenerated && resolver(a.name, name) => a.withName(name)
166+
case a if resolver(a.name, name) => a.withName(name)
167167
})
168168
}
169169

0 commit comments

Comments
 (0)