Skip to content

Commit

Permalink
Fix CaseInsensitiveQualifiedTable error (#28989)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Nov 8, 2023
1 parent bb81e55 commit 4bb94c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public CaseInsensitiveQualifiedTable(final String schemaName, final String table

@Override
public String toString() {
return null == schemaName ? tableName.toString() : String.join(".", schemaName.toString(), tableName.toString());
return null == schemaName.toString() ? tableName.toString() : String.join(".", schemaName.toString(), tableName.toString());
}
}

0 comments on commit 4bb94c0

Please sign in to comment.