Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0004493: Transforms start and end table for each row causing poor
performance with bulk data loading
  • Loading branch information
erilong committed Aug 26, 2020
1 parent 1ca8afc commit 504574f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -967,7 +967,7 @@ public boolean equalsByName(Table other) {
if (this == other) {
return true;
}
if (other != null && StringUtils.equals(catalog, other.catalog) && StringUtils.equalsIgnoreCase(schema, other.schema) &&
if (other != null && StringUtils.equalsIgnoreCase(catalog, other.catalog) && StringUtils.equalsIgnoreCase(schema, other.schema) &&
StringUtils.equalsIgnoreCase(name, other.name)) {

if (columns == other.columns) {
Expand Down

0 comments on commit 504574f

Please sign in to comment.