MaxGekk commented on a change in pull request #25924: [SPARK-29237][SQL][DOC]
Avoid usage of function names in expression examples
URL: https://github.com/apache/spark/pull/25924#discussion_r327976456
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/arithmetic.scala
##########
@@ -450,7 +450,7 @@ case class IntegralDivide(left: Expression, right:
Expression) extends DivModLik
Examples:
> SELECT 2 _FUNC_ 1.8;
0.2
- > SELECT MOD(2, 1.8);
+ > SELECT _FUNC_(2, 1.8);
Review comment:
This will be replaced by `%(2, 1.8)`. Probably, need to add to ignore list
as well.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]