Timo Walther created FLINK-32689:
------------------------------------

             Summary: Insufficient validation for table.local-time-zone
                 Key: FLINK-32689
                 URL: https://issues.apache.org/jira/browse/FLINK-32689
             Project: Flink
          Issue Type: Bug
          Components: Table SQL / API
            Reporter: Timo Walther
            Assignee: Timo Walther


There are still cases where timezone information is lost silently due to the 
interaction between {{java.util.TimeZone}} and {{java.time.ZoneId}}.

This might be theoretical problem, but I would feel safer if we change the 
check to:
{code}
if 
(!java.util.TimeZone.getTimeZone(zoneId).toZoneId().equals(ZoneId.of(zoneId))) {
   throw new ValidationException(errorMessage);
}
{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to