yuqi1129 commented on code in PR #9776:
URL: https://github.com/apache/gravitino/pull/9776#discussion_r2757846856
##########
catalogs-contrib/catalog-jdbc-clickhouse/src/main/java/org/apache/gravitino/catalog/clickhouse/converter/ClickHouseTypeConverter.java:
##########
@@ -117,9 +133,11 @@ public Type toGravitino(JdbcTypeBean typeBean) {
case DATE32:
return Types.DateType.get();
case DATETIME:
+ // Gravitino timestamp type does not support time zones with detail
zone name like 'UTC'
+ // or 'America/Los_Angeles'. So we ignore it here and use ExternalType
for such cases.
return Types.TimestampType.withoutTimeZone();
Review Comment:
It's seconds, let me add some description here.
--
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]