IKAZUCHI-Akira commented on issue #585: URL: https://github.com/apache/doris-flink-connector/issues/585#issuecomment-2804013421
> This seems to be the minimum value in java.time.Instant? > > private static final long MIN_SECOND = -31557014167219200L; > private static Instant create(long seconds, int nanoOfSecond) { > if ((seconds | nanoOfSecond) == 0) { > return EPOCH; > } > if (seconds < MIN_SECOND || seconds > MAX_SECOND) { > throw new DateTimeException("Instant exceeds minimum or maximum instant"); > } > return new Instant(seconds, nanoOfSecond); > } Yes, job failed caused by dirty data `DATETIME(6):0012-11-15 00:00:00.000000`, its actual value is `-61_760_995_200_000_000L` -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org