Skip to content

Commit

Permalink
Fix null tableName when logging in checkCommitStatus for Nessie table…
Browse files Browse the repository at this point in the history
…s and enforce tableName is implemented at compile time (#2630)

(cherry picked from commit df93538)
  • Loading branch information
kbendick authored and rzhang10 committed Jul 25, 2022
1 parent b76c24c commit b56743b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public NessieTableOperations(
this.fileIO = fileIO;
}

@Override
protected String tableName() {
return key.toString();
}

@Override
protected void doRefresh() {
try {
Expand Down

0 comments on commit b56743b

Please sign in to comment.