predator4ann commented on code in PR #8216:
URL: https://github.com/apache/gravitino/pull/8216#discussion_r2289779259
##########
flink-connector/flink/src/main/java/org/apache/gravitino/flink/connector/utils/TypeUtils.java:
##########
@@ -36,6 +36,12 @@
public class TypeUtils {
+ // Flink supports timestamp precision from 0 to 9 (nanosecond precision).
+ protected static final int FLINK_SECONDS_PRECISION = 0;
+ protected static final int FLINK_MILLIS_PRECISION = 3;
+ protected static final int FLINK_MICROS_PRECISION = 6;
+ protected static final int FLINK_NANOS_PRECISION = 9;
Review Comment:
Thanks for your time, comments added.
--
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]