dongjoon-hyun commented on a change in pull request #24516: [SPARK-27624][CORE]
Fix CalenderInterval to show an empty interval correctly
URL: https://github.com/apache/spark/pull/24516#discussion_r280554567
##########
File path:
common/unsafe/src/main/java/org/apache/spark/unsafe/types/CalendarInterval.java
##########
@@ -321,6 +321,10 @@ public String toString() {
appendUnit(sb, rest, "microsecond");
}
+ if (months == 0 && microseconds == 0) {
+ sb.append(" 0 microseconds");
Review comment:
Note that `appendUnit` is designed to ignore `0` and this is more simpler (1
`append` call) than `appendUnit` (5 `append` calls)
----------------------------------------------------------------
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]