@@ -68,7 +68,7 @@ case class UnresolvedAttribute(nameParts: Seq[String])
68
68
override def withName (newName : String ): UnresolvedAttribute = UnresolvedAttribute .quoted(newName)
69
69
70
70
// 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 =
72
72
throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
73
73
74
74
override def toString : String = s " ' $name"
@@ -86,7 +86,7 @@ case class UnresolvedFunction(name: String, children: Seq[Expression]) extends E
86
86
override lazy val resolved = false
87
87
88
88
// 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 =
90
90
throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
91
91
92
92
override def toString : String = s " ' $name( ${children.mkString(" ," )}) "
@@ -108,7 +108,7 @@ trait Star extends NamedExpression with trees.LeafNode[Expression] {
108
108
override lazy val resolved = false
109
109
110
110
// 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 =
112
112
throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
113
113
114
114
def expand (input : Seq [Attribute ], resolver : Resolver ): Seq [NamedExpression ]
@@ -167,7 +167,7 @@ case class MultiAlias(child: Expression, names: Seq[String])
167
167
168
168
override lazy val resolved = false
169
169
170
- override def eval (input : catalyst. InternalRow = null ): Any =
170
+ override def eval (input : InternalRow = null ): Any =
171
171
throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
172
172
173
173
override def toString : String = s " $child AS $names"
@@ -201,7 +201,7 @@ case class UnresolvedExtractValue(child: Expression, extraction: Expression)
201
201
override def nullable : Boolean = throw new UnresolvedException (this , " nullable" )
202
202
override lazy val resolved = false
203
203
204
- override def eval (input : catalyst. InternalRow = null ): Any =
204
+ override def eval (input : InternalRow = null ): Any =
205
205
throw new TreeNodeException (this , s " No function to evaluate expression. type: ${this .nodeName}" )
206
206
207
207
override def toString : String = s " $child[ $extraction] "
0 commit comments