You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2022/06/23 03:51:13 UTC

[GitHub] [iotdb] irvine0109 commented on a diff in pull request #6384: [IOTDB-3604] Refactor the time zone setter by using the setClientInfo method of JDBC

irvine0109 commented on code in PR #6384:
URL: https://github.com/apache/iotdb/pull/6384#discussion_r904492190


##########
jdbc/src/main/java/org/apache/iotdb/jdbc/Utils.java:
##########
@@ -18,13 +18,20 @@
  */
 package org.apache.iotdb.jdbc;
 
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.time.DateTimeException;
+import java.time.ZoneId;
+import java.time.zone.ZoneRulesException;
 import java.util.Properties;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
 /** Utils to convert between thrift format and TsFile format. */
 public class Utils {
 
+  private static final Logger logger = LoggerFactory.getLogger(Utils.class);

Review Comment:
   done



-- 
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: reviews-unsubscribe@iotdb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org