HyukjinKwon commented on a change in pull request #23363: [SPARK-26426][SQL]fix
ExpresionInfo assert error in windows operation system.
URL: https://github.com/apache/spark/pull/23363#discussion_r243784875
##########
File path:
sql/catalyst/src/main/java/org/apache/spark/sql/catalyst/expressions/ExpressionInfo.java
##########
@@ -79,7 +79,8 @@ public ExpressionInfo(
assert name != null;
assert arguments != null;
assert examples != null;
- assert examples.isEmpty() || examples.startsWith("\n Examples:");
+ assert examples.isEmpty() || examples.startsWith("\n Examples:")
Review comment:
Let's use `System.lineSeparator`
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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]