Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ public void dropRowRange(String tableId, ByteString rowKeyPrefix) {
DropRowRangeRequest protoRequest =
DropRowRangeRequest.newBuilder()
.setName(instanceName.toTableNameStr(tableId))
.setDeleteAllDataFromTable(false)
.setRowKeyPrefix(rowKeyPrefix)
.build();
delegate.dropRowRange(protoRequest);
Expand All @@ -254,7 +253,6 @@ public ApiFuture<Void> dropRowRangeAsync(String tableId, ByteString rowKeyPrefix
DropRowRangeRequest protoRequest =
DropRowRangeRequest.newBuilder()
.setName(instanceName.toTableNameStr(tableId))
.setDeleteAllDataFromTable(false)
.setRowKeyPrefix(rowKeyPrefix)
.build();
return ApiFutureUtil.transformAndAdapt(
Expand Down