hanyuzheng7 commented on PR #25897: URL: https://github.com/apache/flink/pull/25897#issuecomment-2659636431
@snuyanzin can we change the method in TimestampData ``` private TimestampData(long millisecond, int nanoOfMillisecond) { Preconditions.checkArgument(nanoOfMillisecond >= 0 && nanoOfMillisecond <= 999_999); this.millisecond = millisecond; this.nanoOfMillisecond = nanoOfMillisecond; } ``` and make Preconditions.checkArgument(nanoOfMillisecond >= 0 && nanoOfMillisecond <= 999_999) to Preconditions.checkArgument(nanoOfMillisecond >= 0 && nanoOfMillisecond <= 1_000_00); -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org