Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ajkr committed Apr 17, 2024
1 parent 0d52d53 commit e384209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion db/memtable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ Status MemTable::Add(SequenceNumber s, ValueType type,

if (!allow_concurrent) {
// Extract prefix for insert with hint. Hints are for point key table
// (`table`) only, not `range_del_table_`.
// (`table_`) only, not `range_del_table_`.
if (table == table_ && insert_with_hint_prefix_extractor_ != nullptr &&
insert_with_hint_prefix_extractor_->InDomain(key_slice)) {
Slice prefix = insert_with_hint_prefix_extractor_->Transform(key_slice);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fixed feature interaction bug for `DeleteRange()` together with `ColumnFamilyOptions::memtable_insert_with_hint_prefix_extractor`. The impact of this bug would likely be corruption or crashing.

0 comments on commit e384209

Please sign in to comment.