@@ -68,7 +68,7 @@ case class UnresolvedAttribute(nameParts: Seq[String])
6868 override def withName (newName : String ): UnresolvedAttribute = UnresolvedAttribute .quoted(newName)
6969
7070 // Unresolved attributes are transient at compile time and don't get evaluated during execution.
71- override def eval (input : catalyst. InternalRow = null ): Any =
71+ override def eval (input : InternalRow = null ): Any =
7272 throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
7373
7474 override def toString : String = s " ' $name"
@@ -86,7 +86,7 @@ case class UnresolvedFunction(name: String, children: Seq[Expression]) extends E
8686 override lazy val resolved = false
8787
8888 // Unresolved functions are transient at compile time and don't get evaluated during execution.
89- override def eval (input : catalyst. InternalRow = null ): Any =
89+ override def eval (input : InternalRow = null ): Any =
9090 throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
9191
9292 override def toString : String = s " ' $name( ${children.mkString(" ," )}) "
@@ -108,7 +108,7 @@ trait Star extends NamedExpression with trees.LeafNode[Expression] {
108108 override lazy val resolved = false
109109
110110 // Star gets expanded at runtime so we never evaluate a Star.
111- override def eval (input : catalyst. InternalRow = null ): Any =
111+ override def eval (input : InternalRow = null ): Any =
112112 throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
113113
114114 def expand (input : Seq [Attribute ], resolver : Resolver ): Seq [NamedExpression ]
@@ -167,7 +167,7 @@ case class MultiAlias(child: Expression, names: Seq[String])
167167
168168 override lazy val resolved = false
169169
170- override def eval (input : catalyst. InternalRow = null ): Any =
170+ override def eval (input : InternalRow = null ): Any =
171171 throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
172172
173173 override def toString : String = s " $child AS $names"
@@ -201,7 +201,7 @@ case class UnresolvedExtractValue(child: Expression, extraction: Expression)
201201 override def nullable : Boolean = throw new UnresolvedException (this , " nullable" )
202202 override lazy val resolved = false
203203
204- override def eval (input : catalyst. InternalRow = null ): Any =
204+ override def eval (input : InternalRow = null ): Any =
205205 throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
206206
207207 override def toString : String = s " $child[ $extraction] "
0 commit comments