Skip to content

Commit

Permalink
GG-35917 Fixed counter underflow in BackgroundDataProcessor. (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibessonov committed Nov 16, 2022
1 parent d9ad516 commit 6954845
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -551,13 +551,13 @@ public ByteBuffer read(ByteBuffer key) {
}

@Override
public void remove(RowId rowId) {
public void writeBatch(Set<BinaryRowWithRowId> rows, HybridTimestamp timestamp) {
// TODO: GG-35670 Await RowId support
throw new UnsupportedOperationException("Not implemented.");
}

@Override
public void writeBatch(Set<BinaryRowWithRowId> rows, HybridTimestamp timestamp) {
// TODO: GG-35670 Await RowId support
public void remove(RowId rowId) {
throw new UnsupportedOperationException("Not implemented.");
}

Expand Down

0 comments on commit 6954845

Please sign in to comment.