Skip to content

Commit

Permalink
Fix rendering of Black Hole tables and columns in plans
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed May 9, 2019
1 parent b16244f commit b0859c8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,10 @@ public boolean equals(Object obj)
return Objects.equals(this.name, other.name) &&
Objects.equals(this.columnType, other.columnType);
}

@Override
public String toString()
{
return name + ":" + columnType;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,10 @@ public boolean equals(Object obj)
return Objects.equals(this.getSchemaName(), other.getSchemaName()) &&
Objects.equals(this.getTableName(), other.getTableName());
}

@Override
public String toString()
{
return schemaName + ":" + tableName;
}
}

0 comments on commit b0859c8

Please sign in to comment.