Skip to content

Commit

Permalink
Bugfix for txn_write_batch creation
Browse files Browse the repository at this point in the history
  • Loading branch information
mapleFU committed Nov 4, 2024
1 parent d66e827 commit 163bef6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/storage/storage.cc
Original file line number Diff line number Diff line change
Expand Up @@ -868,9 +868,9 @@ Status Storage::BeginTxn() {
// The EXEC command is exclusive and shouldn't have multi transaction at the same time,
// so it's fine to reset the global write batch without any lock.
is_txn_mode_ = true;
txn_write_batch_ =
std::make_unique<rocksdb::WriteBatchWithIndex>(rocksdb::BytewiseComparator() /*default backup_index_comparator */,
0 /* default reserved_bytes*/, GetWriteBatchMaxBytes());
txn_write_batch_ = std::make_unique<rocksdb::WriteBatchWithIndex>(
/*backup_index_comparator=*/rocksdb::BytewiseComparator(),
/*reserved_bytes=*/0, /*overwrite_key=*/true, /*max_bytes=*/GetWriteBatchMaxBytes());
return Status::OK();
}

Expand Down

0 comments on commit 163bef6

Please sign in to comment.