Skip to content

Commit

Permalink
Code optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
“v_kkhuang” committed Dec 10, 2024
1 parent 911b8d0 commit 538f187
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class UJESSQLResultSet(
return
}
val metaTmp = resultSetResult.getMetadata
if ("NULL" == metaTmp) {
if ("NULL".equals(String.valueOf(metaTmp))) {
val fileContentList = resultSetResult.getFileContent.asInstanceOf[util.List[util.List[String]]]
if (null != fileContentList) {
resultSetMetaData.setColumnNameProperties(1, "linkis_string")
Expand Down

0 comments on commit 538f187

Please sign in to comment.