-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MINOR] Typo fixes #20344
[MINOR] Typo fixes #20344
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few changes look like they are more than just fixing typos, but the rest seem OK
@@ -1222,7 +1222,7 @@ class Analyzer( | |||
wf | |||
} | |||
// We get an aggregate function, we need to wrap it in an AggregateExpression. | |||
case agg: AggregateFunction => AggregateExpression(agg, Complete, isDistinct) | |||
case agg: AggregateFunction => agg.toAggregateExpression(isDistinct) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't look like a typo fix
@@ -199,7 +199,7 @@ case class UnresolvedGenerator(name: FunctionIdentifier, children: Seq[Expressio | |||
override def prettyName: String = name.unquotedString | |||
override def toString: String = s"'$name(${children.mkString(", ")})" | |||
|
|||
override def eval(input: InternalRow = null): TraversableOnce[InternalRow] = | |||
override def eval(input: InternalRow = EmptyRow): TraversableOnce[InternalRow] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likewise this could be a functional change
Test build #86447 has finished for PR 20344 at commit
|
Test build #86466 has finished for PR 20344 at commit
|
The builds failed due to a change in the error messages that the tests assert (!) Fixing... |
Test build #4070 has finished for PR 20344 at commit
|
Test build #86486 has finished for PR 20344 at commit
|
Merged to master/2.3 |
Test build #4071 has finished for PR 20344 at commit
|
What changes were proposed in this pull request?
Typo fixes
How was this patch tested?
Local build / Doc-only changes