morningman commented on code in PR #32831:
URL: https://github.com/apache/doris/pull/32831#discussion_r1540347112


##########
fe/fe-core/src/main/java/org/apache/doris/datasource/hive/PostgreSQLJdbcHMSCachedClient.java:
##########
@@ -470,6 +470,15 @@ private List<FieldSchema> 
getSchemaExcludePartitionKeys(int sdId) {
         return colsExcludePartitionKeys.build();
     }
 
+    private String getStringResult(ResultSet rs, String columnLabel) throws 
Exception {
+        String s = rs.getString(columnLabel);
+        if (rs.wasNull()) {
+            LOG.warn("get `NULL` value of field `" + columnLabel + "`.");

Review Comment:
   Change to debug



-- 
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

Reply via email to