XComp commented on code in PR #25250:
URL: https://github.com/apache/flink/pull/25250#discussion_r1761017539
##########
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/data/conversion/DayTimeIntervalDurationConverter.java:
##########
@@ -40,6 +38,6 @@ public Long toInternal(java.time.Duration external) {
@Override
public java.time.Duration toExternal(Long internal) {
- return Duration.ofMillis(internal);
+ return java.time.Duration.ofMillis(internal);
Review Comment:
darn, that one slipped through. -.-
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]