Skip to content

Commit

Permalink
Implement getDatabaseName() in CockroachContainer (#3778)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergei Egorov <bsideup@gmail.com>
  • Loading branch information
croemmich and bsideup authored Feb 10, 2021
1 parent a6f91e3 commit b62b0ef
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ public String getJdbcUrl() {
"/" + databaseName + additionalUrlParams;
}

@Override
public final String getDatabaseName() {
return databaseName;
}

@Override
public String getUsername() {
return username;
Expand Down

0 comments on commit b62b0ef

Please sign in to comment.