Skip to content

Commit

Permalink
Fix plan printing of table layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Jun 12, 2015
1 parent ed13d30 commit 0513adb
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 @@ -82,4 +82,10 @@ public int hashCode()
{
return Objects.hash(table, partitions);
}

@Override
public String toString()
{
return table.toString();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,10 @@ public String getConnectorId()
{
return table.getConnectorId();
}

@Override
public String toString()
{
return table.toString();
}
}

0 comments on commit 0513adb

Please sign in to comment.