Skip to content

Commit

Permalink
dbeaver/pro#2485 Fix check for fully qualified name is not classified (
Browse files Browse the repository at this point in the history
  • Loading branch information
E1izabeth committed Feb 14, 2024
1 parent bb0720d commit ce35774
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -141,6 +141,8 @@ public boolean equals(Object obj) {
}

public boolean isNotClassified() {
return this.entityName.isNotClassified();
return this.entityName.isNotClassified()
&& (this.schemaName == null || this.schemaName.isNotClassified())
&& (this.catalogName == null || this.catalogName.isNotClassified());
}
}

0 comments on commit ce35774

Please sign in to comment.